2018-02-25 20:14:58 -05:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace ChocolArm64.Events
|
|
|
|
{
|
|
|
|
public class AInstExceptionEventArgs : EventArgs
|
|
|
|
{
|
2018-06-26 00:09:32 -04:00
|
|
|
public long Position { get; private set; }
|
|
|
|
public int Id { get; private set; }
|
2018-02-25 20:14:58 -05:00
|
|
|
|
2018-06-26 00:09:32 -04:00
|
|
|
public AInstExceptionEventArgs(long Position, int Id)
|
2018-02-25 20:14:58 -05:00
|
|
|
{
|
2018-06-26 00:09:32 -04:00
|
|
|
this.Position = Position;
|
|
|
|
this.Id = Id;
|
2018-02-25 20:14:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|