10 lines
202 B
C#
10 lines
202 B
C#
using Robust.Shared.Players;
|
|
|
|
namespace Content.Server.Ghost.Roles.Components;
|
|
|
|
[ByRefEvent]
|
|
public record struct TakeGhostRoleEvent(ICommonSession Player)
|
|
{
|
|
public bool TookRole { get; set; }
|
|
}
|