*Land has now been linked to the StorageManager. Next step is to fill in the functions for the different datastore interfaces for Land Objects.

This commit is contained in:
mingchen
2007-12-17 03:49:13 +00:00
parent 8e8c26acac
commit d845da215f
10 changed files with 155 additions and 64 deletions

View File

@@ -63,17 +63,17 @@ namespace OpenSim.DataStore.NullStorage
return null;
}
public void RemoveLandObject(uint id)
public void RemoveLandObject(uint id, LLUUID regionUUID)
{
}
public void StoreParcel(Land land)
public void StoreLandObject(Land land, LLUUID regionUUID)
{
}
public List<Land> LoadLandObjects()
public List<Framework.LandData> LoadLandObjects(LLUUID regionUUID)
{
return new List<Land>();
return new List<Framework.LandData>();
}
public void Shutdown()