CS2GSI/GameState/Map.cs

17 lines
444 B
C#
Raw Normal View History

2024-01-15 20:04:37 +01:00
namespace CS2GSI.GameState;
public struct Map
{
public string Mode, Name, Phase;
public int Round, NumMatchesToWinSeries;
public Team TeamCT, TeamT;
2024-01-15 20:39:38 +01:00
public override string ToString()
{
return $"{GetType()}\n" +
$"\t{Mode} {Name} {Round} Matches to Win Series: {NumMatchesToWinSeries}\n" +
$"\t{Phase}\n" +
$"\t{TeamCT}\n" +
$"\t{TeamT}\n";
}
2024-01-15 20:04:37 +01:00
}