16 lines
No EOL
367 B
C#
16 lines
No EOL
367 B
C#
using System;
|
|
|
|
namespace ChocolArm64.Events
|
|
{
|
|
public class AInstExceptionEventArgs : EventArgs
|
|
{
|
|
public long Position { get; private set; }
|
|
public int Id { get; private set; }
|
|
|
|
public AInstExceptionEventArgs(long Position, int Id)
|
|
{
|
|
this.Position = Position;
|
|
this.Id = Id;
|
|
}
|
|
}
|
|
} |