aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Events
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Events')
-rw-r--r--ChocolArm64/Events/AInvalidAccessEventArgs.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/ChocolArm64/Events/AInvalidAccessEventArgs.cs b/ChocolArm64/Events/AInvalidAccessEventArgs.cs
new file mode 100644
index 00000000..a5c472a8
--- /dev/null
+++ b/ChocolArm64/Events/AInvalidAccessEventArgs.cs
@@ -0,0 +1,14 @@
+using System;
+
+namespace ChocolArm64.Events
+{
+ public class AInvalidAccessEventArgs : EventArgs
+ {
+ public long Position { get; private set; }
+
+ public AInvalidAccessEventArgs(long Position)
+ {
+ this.Position = Position;
+ }
+ }
+} \ No newline at end of file