mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-11 00:52:19 +00:00
14 lines
229 B
C#
14 lines
229 B
C#
|
using System;
|
|||
|
|
|||
|
namespace QSB
|
|||
|
{
|
|||
|
[Flags]
|
|||
|
public enum State
|
|||
|
{
|
|||
|
Flashlight = 0,
|
|||
|
Suit = 1,
|
|||
|
ProbeLauncher = 2,
|
|||
|
SignalScope = 4
|
|||
|
//Increment these in binary to add more states
|
|||
|
}
|
|||
|
}
|