ECS cargo telepad and cleanup (#6450)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
This commit is contained in:
21
Content.Shared/Cargo/SharedCargoSystem.cs
Normal file
21
Content.Shared/Cargo/SharedCargoSystem.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Cargo;
|
||||
|
||||
public abstract class SharedCargoSystem : EntitySystem {}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum CargoTelepadState : byte
|
||||
{
|
||||
Unpowered,
|
||||
Idle,
|
||||
Teleporting,
|
||||
};
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum CargoTelepadVisuals : byte
|
||||
{
|
||||
State,
|
||||
};
|
||||
Reference in New Issue
Block a user