1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -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

@ -0,0 +1,10 @@
namespace SharedLibraryCore
{
public class Map
{
public string Name { get; set; }
public string Alias { get; set; }
public override string ToString() => Alias;
}
}