2018-03-14 14:22:04 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
using static SharedLibraryCore.Server;
|
2018-03-14 14:22:04 -04:00
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
namespace SharedLibraryCore.Configuration
|
2018-03-14 14:22:04 -04:00
|
|
|
|
{
|
|
|
|
|
public class MapConfiguration
|
|
|
|
|
{
|
|
|
|
|
public Game Game { get; set; }
|
|
|
|
|
public List<Map> Maps { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|