Files
wwdpublic/Content.Server/Ghost/Roles/Components/TakeGhostRoleEvent.cs
2023-10-31 19:00:44 +01: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; }
}