2022-05-13 00:59:03 -07:00
|
|
|
|
namespace Content.Server.Roles
|
2020-08-27 16:39:29 +02:00
|
|
|
|
{
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public abstract class RoleEvent : EntityEventArgs
|
2020-08-27 16:39:29 +02:00
|
|
|
|
{
|
2022-08-07 08:00:42 +02:00
|
|
|
|
public readonly Mind.Mind Mind;
|
2020-08-27 16:39:29 +02:00
|
|
|
|
public readonly Role Role;
|
|
|
|
|
|
|
2022-08-07 08:00:42 +02:00
|
|
|
|
public RoleEvent(Mind.Mind mind, Role role)
|
2020-08-27 16:39:29 +02:00
|
|
|
|
{
|
2022-08-07 08:00:42 +02:00
|
|
|
|
Mind = mind;
|
2020-08-27 16:39:29 +02:00
|
|
|
|
Role = role;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|