2023-10-28 09:59:53 +11:00
|
|
|
|
using Robust.Shared.Player;
|
2023-04-12 06:32:14 -07:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Ghost.Roles.Components;
|
|
|
|
|
|
|
|
|
|
|
|
[ByRefEvent]
|
2023-08-30 21:46:11 -07:00
|
|
|
|
public record struct TakeGhostRoleEvent(ICommonSession Player)
|
2023-04-12 06:32:14 -07:00
|
|
|
|
{
|
|
|
|
|
|
public bool TookRole { get; set; }
|
|
|
|
|
|
}
|