CharacteristicUpdatedEvent.cs 349 B

12345678
  1. namespace Content.Shared._Stalker.Characteristics;
  2. public sealed partial class CharacteristicUpdatedEvent(Characteristic characteristic, int oldLevel, int newLevel) : EntityEventArgs
  3. {
  4. public readonly Characteristic Characteristic = characteristic;
  5. public readonly int OldLevel = oldLevel;
  6. public readonly int NewLevel = newLevel;
  7. }