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