mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-14 19:30:01 +01:00
22 lines
376 B
C#
22 lines
376 B
C#
using Content.Shared.Hands.Components;
|
|
|
|
namespace Content.Shared.Inventory;
|
|
|
|
public partial class InventorySystem
|
|
{
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
InitializeEquip();
|
|
InitializeRelay();
|
|
InitializeSlots();
|
|
}
|
|
|
|
public override void Shutdown()
|
|
{
|
|
base.Shutdown();
|
|
ShutdownSlots();
|
|
}
|
|
}
|