2021-11-21 17:09:49 +11:00
|
|
|
namespace Content.Shared.Shuttles.Components
|
2021-11-11 20:06:38 +11:00
|
|
|
{
|
2023-08-22 18:14:33 -07:00
|
|
|
public abstract partial class SharedDockingComponent : Component
|
2021-11-11 20:06:38 +11:00
|
|
|
{
|
|
|
|
|
// Yes I left this in for now because there's no overhead and we'll need a client one later anyway
|
|
|
|
|
// and I was too lazy to delete it.
|
|
|
|
|
|
|
|
|
|
public abstract bool Docked { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|