AInstExceptEventArgs.cs 243 B

1234567891011121314
  1. using System;
  2. namespace ChocolArm64.State
  3. {
  4. public class AInstExceptEventArgs : EventArgs
  5. {
  6. public int Id { get; private set; }
  7. public AInstExceptEventArgs(int Id)
  8. {
  9. this.Id = Id;
  10. }
  11. }
  12. }