14 lines
299 B
C#
14 lines
299 B
C#
|
|
namespace Content.Shared.Actions.Events;
|
|||
|
|
|
|||
|
|
public sealed class ActionUpgradeEvent : EntityEventArgs
|
|||
|
|
{
|
|||
|
|
public int NewLevel;
|
|||
|
|
public EntityUid? ActionId;
|
|||
|
|
|
|||
|
|
public ActionUpgradeEvent(int newLevel, EntityUid? actionId)
|
|||
|
|
{
|
|||
|
|
NewLevel = newLevel;
|
|||
|
|
ActionId = actionId;
|
|||
|
|
}
|
|||
|
|
}
|