quantum-space-buddies/QSB/State.cs
Mister_Nebula 11811283d4
Translator (#107)
* add translator

* Fix materials
2020-07-30 20:17:20 +01:00

15 lines
253 B
C#

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