mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-05-02 04:57:17 +03:00
10 lines
201 B
C#
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; }
|
|
}
|