mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 03:40:46 +00:00
5dce7a8a03
* Added probe + probe launcher, with general event/transformsync/player refactors and improvements
16 lines
279 B
C#
16 lines
279 B
C#
using System;
|
|
|
|
namespace QSB
|
|
{
|
|
[Flags]
|
|
public enum State
|
|
{
|
|
Flashlight = 0,
|
|
Suit = 1,
|
|
ProbeLauncher = 2,
|
|
Signalscope = 4,
|
|
Translator = 8,
|
|
ProbeActive = 16
|
|
//Increment these in binary to add more states
|
|
}
|
|
} |