implement map and gametype command

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

View File

@ -0,0 +1,8 @@
namespace SharedLibraryCore
{
public class Gametype
{
public string Name { get; set; }
public string Alias { get; set; }
}
}

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;
}
}