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

10 lines
201 B
C#

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