diff options
author | mingchen | 2007-06-06 18:15:12 +0000 |
---|---|---|
committer | mingchen | 2007-06-06 18:15:12 +0000 |
commit | 73a36680bd5dacd4f2630c50115ef4c1f10dc387 (patch) | |
tree | a628ee922e8cac2e4836b025d986cb5806dd820d /Common/OpenSim.Framework/Interfaces | |
parent | Changes: (diff) | |
download | opensim-SC-73a36680bd5dacd4f2630c50115ef4c1f10dc387.zip opensim-SC-73a36680bd5dacd4f2630c50115ef4c1f10dc387.tar.gz opensim-SC-73a36680bd5dacd4f2630c50115ef4c1f10dc387.tar.bz2 opensim-SC-73a36680bd5dacd4f2630c50115ef4c1f10dc387.tar.xz |
*Added new commands ('backup','show parcels','reset parcels')
*Added parcel join support
*Made parcel saving and loading much more efficient
*Fixed bug that would not allow joining of parcel locally in the viewer (gives an error before sending to server)
*Known Issue: Restoring parcels from storage is not working correctly. For now, do a 'reset parcels' to regenerate a standard parcel
Diffstat (limited to 'Common/OpenSim.Framework/Interfaces')
-rw-r--r-- | Common/OpenSim.Framework/Interfaces/ILocalStorage.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Common/OpenSim.Framework/Interfaces/ILocalStorage.cs b/Common/OpenSim.Framework/Interfaces/ILocalStorage.cs index 9fa3a00..dd17b72 100644 --- a/Common/OpenSim.Framework/Interfaces/ILocalStorage.cs +++ b/Common/OpenSim.Framework/Interfaces/ILocalStorage.cs | |||
@@ -46,6 +46,9 @@ namespace OpenSim.Framework.Interfaces | |||
46 | void SaveMap(float[] heightmap); | 46 | void SaveMap(float[] heightmap); |
47 | 47 | ||
48 | void SaveParcels(ParcelData[] parcels); | 48 | void SaveParcels(ParcelData[] parcels); |
49 | void SaveParcel(ParcelData parcel); | ||
50 | void RemoveParcel(ParcelData parcel); | ||
51 | void RemoveAllParcels(); | ||
49 | void LoadParcels(ILocalStorageParcelReceiver recv); | 52 | void LoadParcels(ILocalStorageParcelReceiver recv); |
50 | 53 | ||
51 | void ShutDown(); | 54 | void ShutDown(); |