Files
tbd-station-14/Content.Server/Ghost/Roles/Components/TakeGhostRoleEvent.cs
2023-10-28 09:59:53 +11:00

10 lines
201 B
C#

using Robust.Shared.Player;
namespace Content.Server.Ghost.Roles.Components;
[ByRefEvent]
public record struct TakeGhostRoleEvent(ICommonSession Player)
{
public bool TookRole { get; set; }
}