ExceptionCallback.cs 200 B

12345
  1. namespace ARMeilleure.State
  2. {
  3. public delegate void ExceptionCallbackNoArgs(ExecutionContext context);
  4. public delegate void ExceptionCallback(ExecutionContext context, ulong address, int id);
  5. }