Files
Net.Project.B/Src/GameService/IGameMapData.cs

15 lines
339 B
C#
Raw Normal View History

2025-02-24 23:02:49 +08:00
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; }
}
}