mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-08 18:51:19 +00:00
42cb791c5d
Co-authored-by: Mister_Nebula <41904486+misternebula@users.noreply.github.com>
17 lines
298 B
C#
17 lines
298 B
C#
using System;
|
|
|
|
namespace QSB
|
|
{
|
|
[Flags]
|
|
public enum State
|
|
{
|
|
None = 0,
|
|
Flashlight = 1,
|
|
Suit = 2,
|
|
ProbeLauncher = 4,
|
|
Signalscope = 8,
|
|
Translator = 16,
|
|
ProbeActive = 32
|
|
//Increment these in binary to add more states
|
|
}
|
|
} |