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