8 lines
136 B
C#
8 lines
136 B
C#
|
namespace CS2GSI.GameState;
|
|||
|
|
|||
|
public struct CS2GameState
|
|||
|
{
|
|||
|
public int Timestamp;
|
|||
|
public Map? Map;
|
|||
|
public Player? Player;
|
|||
|
}
|