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;
|
|
}
|
|
}
|
|
}
|