mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 12:54:51 +00:00
12 lines
149 B
C#
12 lines
149 B
C#
|
namespace QSB.ProbeSync
|
|||
|
{
|
|||
|
public enum ProbeEvent
|
|||
|
{
|
|||
|
Invalid = 0,
|
|||
|
Launch = 1,
|
|||
|
Anchor = 2,
|
|||
|
Unanchor = 3,
|
|||
|
Retrieve = 4,
|
|||
|
Destroy = 5
|
|||
|
}
|
|||
|
}
|