16 lines
387 B
C#
16 lines
387 B
C#
![]() |
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 MapOverview { get; }
|
||
|
public object LoadingScreen { get; }
|
||
|
public string MapAddress { get; }
|
||
|
}
|
||
|
}
|