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; }
|
2025-04-14 15:39:24 +08:00
|
|
|
public object MapOverview { get; }
|
|
|
|
public object LoadingScreen { get; }
|
2025-02-24 23:02:49 +08:00
|
|
|
public string MapAddress { get; }
|
|
|
|
}
|
|
|
|
}
|