1
0

InventorySystem.cs 376 B

123456789101112131415161718192021
  1. using Content.Shared.Hands.Components;
  2. namespace Content.Shared.Inventory;
  3. public partial class InventorySystem
  4. {
  5. public override void Initialize()
  6. {
  7. base.Initialize();
  8. InitializeEquip();
  9. InitializeRelay();
  10. InitializeSlots();
  11. }
  12. public override void Shutdown()
  13. {
  14. base.Shutdown();
  15. ShutdownSlots();
  16. }
  17. }