2022-02-15 15:01:45 +11:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Cargo;
|
|
|
|
|
|
2022-06-23 14:36:47 +10:00
|
|
|
[NetSerializable, Serializable]
|
|
|
|
|
public enum CargoConsoleUiKey : byte
|
|
|
|
|
{
|
|
|
|
|
Orders,
|
2023-06-22 07:49:33 -04:00
|
|
|
Bounty,
|
2022-06-23 14:36:47 +10:00
|
|
|
Shuttle,
|
|
|
|
|
Telepad
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-13 16:36:35 -04:00
|
|
|
[NetSerializable, Serializable]
|
|
|
|
|
public enum CargoPalletConsoleUiKey : byte
|
|
|
|
|
{
|
|
|
|
|
Sale
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-15 15:01:45 +11:00
|
|
|
public abstract class SharedCargoSystem : EntitySystem {}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum CargoTelepadState : byte
|
|
|
|
|
{
|
|
|
|
|
Unpowered,
|
|
|
|
|
Idle,
|
|
|
|
|
Teleporting,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum CargoTelepadVisuals : byte
|
|
|
|
|
{
|
|
|
|
|
State,
|
|
|
|
|
};
|