CS2GSI/GameState/CS2GameState.cs

8 lines
136 B
C#
Raw Normal View History

2024-01-15 20:04:37 +01:00
namespace CS2GSI.GameState;
public struct CS2GameState
{
public int Timestamp;
public Map? Map;
public Player? Player;
}