13 lines
244 B
C#
13 lines
244 B
C#
using System;
|
|
|
|
namespace Assets.Common
|
|
{
|
|
[Serializable]
|
|
public class MapSite
|
|
{
|
|
public readonly Metadata Metadata = new Metadata();
|
|
|
|
[field: NonSerialized]
|
|
public Map Map { get; internal set; }
|
|
}
|
|
} |