Files
tbd-station-14/Content.Server/Ghost/Roles/Components/GhostTakeoverAvailableComponent.cs
2023-04-12 23:32:14 +10:00

12 lines
289 B
C#

namespace Content.Server.Ghost.Roles.Components
{
/// <summary>
/// Allows a ghost to take over the Owner entity.
/// </summary>
[RegisterComponent]
[Access(typeof(GhostRoleSystem))]
public sealed class GhostTakeoverAvailableComponent : Component
{
}
}