diff options
author | Adam Frisby | 2008-04-29 14:04:55 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-29 14:04:55 +0000 |
commit | 375163a6fece8b3a57c7555246abe8338223a599 (patch) | |
tree | 163001ca96a4b4d08589e9772f78510677d5d0dc /OpenSim/Framework/AssetStorage.cs | |
parent | Patch from Melanie: 0001087: Crash to bash de-linking objects. Thanks Melanie! (diff) | |
download | opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.zip opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.gz opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.bz2 opensim-SC_OLD-375163a6fece8b3a57c7555246abe8338223a599.tar.xz |
* Spring cleaning.
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
Diffstat (limited to 'OpenSim/Framework/AssetStorage.cs')
-rw-r--r-- | OpenSim/Framework/AssetStorage.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Framework/AssetStorage.cs b/OpenSim/Framework/AssetStorage.cs index 9c0f52c..d58d866 100644 --- a/OpenSim/Framework/AssetStorage.cs +++ b/OpenSim/Framework/AssetStorage.cs | |||
@@ -31,6 +31,11 @@ namespace OpenSim.Framework | |||
31 | { | 31 | { |
32 | public class AssetStorage | 32 | public class AssetStorage |
33 | { | 33 | { |
34 | public byte[] Data; | ||
35 | public string Name; | ||
36 | public sbyte Type; | ||
37 | public LLUUID UUID; | ||
38 | |||
34 | public AssetStorage() | 39 | public AssetStorage() |
35 | { | 40 | { |
36 | } | 41 | } |
@@ -39,10 +44,5 @@ namespace OpenSim.Framework | |||
39 | { | 44 | { |
40 | UUID = assetUUID; | 45 | UUID = assetUUID; |
41 | } | 46 | } |
42 | |||
43 | public byte[] Data; | ||
44 | public sbyte Type; | ||
45 | public string Name; | ||
46 | public LLUUID UUID; | ||
47 | } | 47 | } |
48 | } | 48 | } \ No newline at end of file |