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