SharedDockingComponent.cs 327 B

12345678910
  1. namespace Content.Shared.Shuttles.Components
  2. {
  3. public abstract partial class SharedDockingComponent : Component
  4. {
  5. // Yes I left this in for now because there's no overhead and we'll need a client one later anyway
  6. // and I was too lazy to delete it.
  7. public abstract bool Docked { get; }
  8. }
  9. }