From d845da215f8d30ef3f34a3c207fb892c815d1fac Mon Sep 17 00:00:00 2001 From: mingchen Date: Mon, 17 Dec 2007 03:49:13 +0000 Subject: *Land has now been linked to the StorageManager. Next step is to fill in the functions for the different datastore interfaces for Land Objects. --- OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Environment/Interfaces') diff --git a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs index 9c2edb9..919cfdc 100644 --- a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs +++ b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs @@ -50,9 +50,9 @@ namespace OpenSim.Region.Environment.Interfaces void StoreTerrain(double[,] terrain, LLUUID regionID); double[,] LoadTerrain(LLUUID regionID); - void StoreParcel(Land Parcel); - void RemoveLandObject(uint ID); - List LoadLandObjects(); + void StoreLandObject(Land Parcel,LLUUID regionUUID); + void RemoveLandObject(uint ID, LLUUID regionUUID); + List LoadLandObjects(LLUUID regionUUID); void Shutdown(); } -- cgit v1.1