quantum-space-buddies/QSB/State.cs

16 lines
279 B
C#
Raw Normal View History

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