Files
tbd-station-14/Content.Client/Cargo/CargoSystem.cs
metalgearsloth 334568dad2 ECS cargo telepad and cleanup (#6450)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
2022-02-15 15:01:45 +11:00

16 lines
347 B
C#

using Content.Shared.Cargo;
using Robust.Client.GameObjects;
namespace Content.Client.Cargo;
public sealed partial class CargoSystem : SharedCargoSystem
{
[Dependency] private readonly AnimationPlayerSystem _player = default!;
public override void Initialize()
{
base.Initialize();
InitializeCargoTelepad();
}
}