quantum-space-buddies/QSB/Player/PlayerState.cs

15 lines
364 B
C#
Raw Normal View History

2021-04-18 17:42:22 +00:00
namespace QSB.Player
{
public class PlayerState
{
2021-04-18 17:46:55 +00:00
public bool IsReady { get; set; }
2021-04-18 17:42:22 +00:00
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; }
}
}