OpenSimMirror/OpenSim.Storage/LocalStorageDb4o/MapStorage.cs

16 lines
248 B
C#
Raw Normal View History

2007-03-22 10:11:15 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Storage.LocalStorageDb4o
2007-03-22 10:11:15 +00:00
{
public class MapStorage
{
public float[,] Map;
2007-03-22 10:11:15 +00:00
public MapStorage()
{
}
}
}