mirror of
https://github.com/opensim/opensim.git
synced 2026-05-20 07:05:46 +08:00
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |