quantum-space-buddies/QSB/Player/State.cs
Mister_Nebula c6c76cb395 C L E A N
2020-12-02 21:23:01 +00:00

17 lines
245 B
C#

using System;
namespace QSB.Player
{
[Flags]
public enum State
{
None = 0,
Flashlight = 1,
Suit = 2,
ProbeLauncher = 4,
Signalscope = 8,
Translator = 16,
ProbeActive = 32
//Increment these in binary to add more states
}
}