*Renamed ParcelManager to LandManager

*Made the Parcel class its own file and moved the Parcel and LandManager into their own folder in Environment
*Some renaming might need to be done so the Parcel class doesn't have issues with the libsecondlife Parcel class, but Land doesn't seem right.
This commit is contained in:
mingchen
2007-07-16 18:45:19 +00:00
parent d79e69d168
commit 7fabf9612a
9 changed files with 634 additions and 1237 deletions

View File

@@ -48,14 +48,14 @@ namespace OpenSim.DataStore.NullStorage
}
public void StoreParcel(OpenSim.Region.Environment.Parcel parcel)
public void StoreParcel(OpenSim.Region.Environment.Parcels.Parcel parcel)
{
}
public List<OpenSim.Region.Environment.Parcel> LoadParcels()
public List<OpenSim.Region.Environment.Parcels.Parcel> LoadParcels()
{
return new List<OpenSim.Region.Environment.Parcel>();
return new List<OpenSim.Region.Environment.Parcels.Parcel>();
}
public void Shutdown()