CS2GSI/GameState/PlayerState.cs

7 lines
185 B
C#
Raw Normal View History

2024-01-15 20:04:37 +01:00
namespace CS2GSI.GameState;
public struct PlayerState
{
public int Health, Armor, Flashed, Smoked, Burning, Money, RoundKills, RoundHs, EquipmentValue;
public bool Helmet;
}