mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 12:54:51 +00:00
11811283d4
* add translator * Fix materials
15 lines
253 B
C#
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
|
|
}
|
|
} |