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