diff options
author | gareth | 2007-04-30 13:38:13 +0000 |
---|---|---|
committer | gareth | 2007-04-30 13:38:13 +0000 |
commit | 4957a8e75ca564ffaade5124b094fd7be48606bb (patch) | |
tree | f548ba5e81a8e06450c5ee66e7a2c80574525961 | |
parent | let's hope this fixes build issues (diff) | |
download | opensim-SC_OLD-4957a8e75ca564ffaade5124b094fd7be48606bb.zip opensim-SC_OLD-4957a8e75ca564ffaade5124b094fd7be48606bb.tar.gz opensim-SC_OLD-4957a8e75ca564ffaade5124b094fd7be48606bb.tar.bz2 opensim-SC_OLD-4957a8e75ca564ffaade5124b094fd7be48606bb.tar.xz |
Fixing stuff
-rw-r--r-- | OpenSim.Framework/Types/AssetStorage.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/OpenSim.Framework/Types/AssetStorage.cs b/OpenSim.Framework/Types/AssetStorage.cs new file mode 100644 index 0000000..1d2660c --- /dev/null +++ b/OpenSim.Framework/Types/AssetStorage.cs | |||
@@ -0,0 +1,23 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | |||
6 | namespace OpenSim.Framework.Types | ||
7 | { | ||
8 | public class AssetStorage | ||
9 | { | ||
10 | |||
11 | public AssetStorage() { | ||
12 | } | ||
13 | |||
14 | public AssetStorage(LLUUID assetUUID) { | ||
15 | UUID=assetUUID; | ||
16 | } | ||
17 | |||
18 | public byte[] Data; | ||
19 | public sbyte Type; | ||
20 | public string Name; | ||
21 | public LLUUID UUID; | ||
22 | } | ||
23 | } | ||