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

17 lines
305 B
C#
Raw Normal View History

2020-07-28 13:59:24 +00:00
using System;
2020-11-03 21:33:48 +00:00
namespace QSB.Player
2020-07-28 13:59:24 +00:00
{
[Flags]
public enum State
{
None = 0,
Flashlight = 1,
Suit = 2,
ProbeLauncher = 4,
Signalscope = 8,
Translator = 16,
ProbeActive = 32
2020-07-28 13:59:24 +00:00
//Increment these in binary to add more states
}
}