IdCardConsoleSystem.cs 350 B

12345678910111213
  1. using Content.Shared.Access.Systems;
  2. using JetBrains.Annotations;
  3. namespace Content.Client.Access
  4. {
  5. [UsedImplicitly]
  6. public sealed class IdCardConsoleSystem : SharedIdCardConsoleSystem
  7. {
  8. // one day, maybe bound user interfaces can be shared too.
  9. // then this doesn't have to be like this.
  10. // I hate this.
  11. }
  12. }