16 lines
247 B
C#
16 lines
247 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace OpenSim.Storage.LocalStorageDb4o
|
||
|
{
|
||
|
public class MapStorage
|
||
|
{
|
||
|
public float[] Map;
|
||
|
|
||
|
public MapStorage()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|