mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
15 lines
364 B
C#
15 lines
364 B
C#
namespace QSB.Player
|
|
{
|
|
public class PlayerState
|
|
{
|
|
public bool IsReady { get; set; }
|
|
|
|
public bool FlashlightActive { get; set; }
|
|
public bool SuitedUp { get; set; }
|
|
public bool ProbeLauncherEquipped { get; set; }
|
|
public bool SignalscopeEquipped { get; set; }
|
|
public bool TranslatorEquipped { get; set; }
|
|
public bool ProbeActive { get; set; }
|
|
}
|
|
}
|