diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs index 91aa5ff..78ad428 100644 --- a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs +++ b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs | |||
@@ -28,6 +28,7 @@ | |||
28 | 28 | ||
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using libsecondlife; | 30 | using libsecondlife; |
31 | using OpenSim.Framework; | ||
31 | using OpenSim.Region.Environment.LandManagement; | 32 | using OpenSim.Region.Environment.LandManagement; |
32 | using OpenSim.Region.Environment.Scenes; | 33 | using OpenSim.Region.Environment.Scenes; |
33 | 34 | ||
@@ -51,10 +52,10 @@ namespace OpenSim.Region.Environment.Interfaces | |||
51 | void StoreTerrain(double[,] terrain, LLUUID regionID); | 52 | void StoreTerrain(double[,] terrain, LLUUID regionID); |
52 | double[,] LoadTerrain(LLUUID regionID); | 53 | double[,] LoadTerrain(LLUUID regionID); |
53 | 54 | ||
54 | void StoreLandObject(Land Parcel,LLUUID regionUUID); | 55 | void StoreLandObject(Land Parcel, LLUUID regionUUID); |
55 | void RemoveLandObject(LLUUID globalID); | 56 | void RemoveLandObject(LLUUID globalID); |
56 | List<Framework.LandData> LoadLandObjects(LLUUID regionUUID); | 57 | List<LandData> LoadLandObjects(LLUUID regionUUID); |
57 | 58 | ||
58 | void Shutdown(); | 59 | void Shutdown(); |
59 | } | 60 | } |
60 | } | 61 | } \ No newline at end of file |