Files
crystall-punk-14/Content.Server/Ghost/Roles/Components/TakeGhostRoleEvent.cs

10 lines
201 B
C#
Raw Normal View History

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