mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-08 09:41:07 +00:00
16 lines
196 B
C#
16 lines
196 B
C#
using System;
|
|
|
|
namespace QSB.Player
|
|
{
|
|
[Flags]
|
|
public enum State
|
|
{
|
|
None = 0,
|
|
Flashlight = 1,
|
|
Suit = 2,
|
|
ProbeLauncher = 4,
|
|
Signalscope = 8,
|
|
Translator = 16,
|
|
ProbeActive = 32
|
|
}
|
|
} |