using System.Collections; using System.Collections.Generic; namespace Project.B.Map { public interface IGameMapData { public string MapName { get; } public string Author { get; } public string Description { get; } public object Overview { get; } public string MapAddress { get; } } }