AInstExceptionEventArgs.cs 367 B

12345678910111213141516
  1. using System;
  2. namespace ChocolArm64.Events
  3. {
  4. public class AInstExceptionEventArgs : EventArgs
  5. {
  6. public long Position { get; private set; }
  7. public int Id { get; private set; }
  8. public AInstExceptionEventArgs(long Position, int Id)
  9. {
  10. this.Position = Position;
  11. this.Id = Id;
  12. }
  13. }
  14. }