GhostTakeoverAvailableComponent.cs 297 B

1234567891011
  1. namespace Content.Server.Ghost.Roles.Components
  2. {
  3. /// <summary>
  4. /// Allows a ghost to take over the Owner entity.
  5. /// </summary>
  6. [RegisterComponent]
  7. [Access(typeof(GhostRoleSystem))]
  8. public sealed partial class GhostTakeoverAvailableComponent : Component
  9. {
  10. }
  11. }