This commit is contained in:
CortexCore
2025-02-24 23:02:49 +08:00
parent 9775bdd099
commit b07ae4fea7
82 changed files with 1021 additions and 386 deletions

View File

@@ -0,0 +1,14 @@
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; }
}
}