mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 23:17:43 +03:00
15 lines
246 B
C#
15 lines
246 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.Roles
|
|
{
|
|
public class RoleEvent : EntityEventArgs
|
|
{
|
|
public readonly Role Role;
|
|
|
|
public RoleEvent(Role role)
|
|
{
|
|
Role = role;
|
|
}
|
|
}
|
|
}
|