inz-00/Assets/Map/Map.cs
2019-07-27 22:40:42 +02:00

10 lines
165 B
C#

using System;
namespace Assets.Map
{
[Serializable]
public class Map
{
public readonly Graph<Section> Sections = new Graph<Section>();
}
}