blob: 44c493e814f9f98418e3b0cf2529af7ae59ef53b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
namespace Impostor.Api.Net
{
[Flags]
public enum LimboStates
{
PreSpawn = 1,
NotLimbo = 2,
WaitingForHost = 4,
All = PreSpawn | NotLimbo | WaitingForHost,
}
}
|