quantum-space-buddies/QSB/State.cs
Mister_Nebula 5dce7a8a03
Probe + Launcher (with associated events/transformsync changes) (#117)
* Added probe + probe launcher, with general event/transformsync/player refactors and improvements
2020-08-07 20:39:07 +01:00

16 lines
279 B
C#

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