mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 09:52:23 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
14 lines
270 B
C#
Executable file
14 lines
270 B
C#
Executable file
namespace FSO.Server.Protocol.Electron.Model
|
|
{
|
|
public enum FindLotResponseStatus
|
|
{
|
|
FOUND,
|
|
NO_SUCH_LOT,
|
|
NOT_OPEN,
|
|
NOT_PERMITTED_TO_OPEN,
|
|
CLAIM_FAILED,
|
|
NO_CAPACITY,
|
|
NO_ADMIT,
|
|
UNKNOWN_ERROR
|
|
}
|
|
}
|