1
0

InteractionSystem.cs 330 B

123456789101112
  1. using Content.Shared.Interaction;
  2. using Content.Shared.Storage;
  3. using JetBrains.Annotations;
  4. using Robust.Server.GameObjects;
  5. using Robust.Shared.Containers;
  6. using Robust.Shared.Player;
  7. namespace Content.Server.Interaction
  8. {
  9. // TODO Remove Shared prefix
  10. public sealed class InteractionSystem : SharedInteractionSystem;
  11. }