2007-03-22 10:11:15 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
2007-04-02 10:46:59 +00:00
|
|
|
namespace OpenSim.Storage.LocalStorageDb4o
|
2007-03-22 10:11:15 +00:00
|
|
|
{
|
|
|
|
public class MapStorage
|
|
|
|
{
|
2007-04-11 05:19:27 +00:00
|
|
|
public float[] Map;
|
2007-03-22 10:11:15 +00:00
|
|
|
|
|
|
|
public MapStorage()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2007-04-02 10:46:59 +00:00
|
|
|
}
|