1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-13 00:28:10 -05:00

implement map and gametype command

This commit is contained in:
RaidMax
2021-11-28 10:04:37 -06:00
parent 985762c426
commit b33b518fa2
9 changed files with 724 additions and 80 deletions

View File

@ -1,16 +1,8 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static SharedLibraryCore.Server;
namespace SharedLibraryCore.Configuration
namespace SharedLibraryCore.Configuration
{
public class MapConfiguration
{
public Game Game { get; set; }
public List<Map> Maps { get; set; }
public Server.Game Game { get; set; }
public Map[] Maps { get; set; }
}
}