8 lines
180 B
C#
Raw Normal View History

2021-11-28 10:04:37 -06:00
namespace SharedLibraryCore.Configuration
2018-03-14 13:22:04 -05:00
{
public class MapConfiguration
{
2021-11-28 10:04:37 -06:00
public Server.Game Game { get; set; }
public Map[] Maps { get; set; }
2018-03-14 13:22:04 -05:00
}
2022-01-26 10:32:16 -06:00
}