mirror of
https://github.com/opensim/opensim.git
synced 2026-06-01 23:45:44 +08:00
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|