17 lines
245 B
C#
17 lines
245 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace OpenSim.Config.SimConfigDb4o
|
||
|
{
|
||
|
public class MapStorage
|
||
|
{
|
||
|
public float[] Map;
|
||
|
|
||
|
public MapStorage()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|