ActionUpgradeEvent.cs 299 B

12345678910111213
  1. namespace Content.Shared.Actions.Events;
  2. public sealed class ActionUpgradeEvent : EntityEventArgs
  3. {
  4. public int NewLevel;
  5. public EntityUid? ActionId;
  6. public ActionUpgradeEvent(int newLevel, EntityUid? actionId)
  7. {
  8. NewLevel = newLevel;
  9. ActionId = actionId;
  10. }
  11. }