8 lines
166 B
C#
8 lines
166 B
C#
|
namespace CS2GSI.GameState;
|
|||
|
|
|||
|
public struct Map
|
|||
|
{
|
|||
|
public string Mode, Name, Phase;
|
|||
|
public int Round, NumMatchesToWinSeries;
|
|||
|
public Team TeamCT, TeamT;
|
|||
|
}
|