aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/State/AInstExceptEventArgs.cs
blob: f2ee039b6b5d6d794cd08f38ec432bad05cec2a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace ChocolArm64.State
{
    public class AInstExceptEventArgs : EventArgs
    {
        public int Id { get; private set; }

        public AInstExceptEventArgs(int Id)
        {
            this.Id = Id;
        }
    }
}