10 lines
167 B
C#
10 lines
167 B
C#
using System;
|
|
|
|
namespace Assets.Map
|
|
{
|
|
[Serializable]
|
|
public class Map
|
|
{
|
|
public readonly Graph<Location> Sections = new Graph<Location>();
|
|
}
|
|
} |