CS2GSI/GameState/CS2GameState.cs

8 lines
136 B
C#

namespace CS2GSI.GameState;
public struct CS2GameState
{
public int Timestamp;
public Map? Map;
public Player? Player;
}