mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-30 21:32:47 +00:00
13 lines
327 B
C#
13 lines
327 B
C#
|
namespace QSB.Player
|
|||
|
{
|
|||
|
public class PlayerState
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|