mirror of
https://github.com/opensim/opensim.git
synced 2026-05-16 11:46:04 +08:00
66 lines
1.2 KiB
C#
66 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using OpenSim.Region.Environment.Scenes;
|
|
using OpenSim.Region.Environment;
|
|
using OpenSim.Region.Interfaces;
|
|
using OpenSim.Framework.Console;
|
|
using libsecondlife;
|
|
|
|
namespace OpenSim.DataStore.NullStorage
|
|
{
|
|
class NullDataStore : IRegionDataStore
|
|
{
|
|
public void Initialise(string dbfile, string dbname)
|
|
{
|
|
return;
|
|
}
|
|
|
|
public void StoreObject(SceneObject obj)
|
|
{
|
|
|
|
}
|
|
|
|
public void RemoveObject(LLUUID obj)
|
|
{
|
|
|
|
}
|
|
|
|
public List<SceneObject> LoadObjects()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public void StoreTerrain(double[,] ter)
|
|
{
|
|
|
|
}
|
|
|
|
public double[,] LoadTerrain()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public void RemoveParcel(uint id)
|
|
{
|
|
|
|
}
|
|
|
|
public void StoreParcel(OpenSim.Region.Environment.Parcel parcel)
|
|
{
|
|
|
|
}
|
|
|
|
public List<OpenSim.Region.Environment.Parcel> LoadParcels()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public void Shutdown()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|