mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-05 21:44:23 +01:00
14 lines
276 B
C#
14 lines
276 B
C#
|
using System;
|
||
|
|
||
|
namespace ChocolArm64.Events
|
||
|
{
|
||
|
public class AInvalidAccessEventArgs : EventArgs
|
||
|
{
|
||
|
public long Position { get; private set; }
|
||
|
|
||
|
public AInvalidAccessEventArgs(long Position)
|
||
|
{
|
||
|
this.Position = Position;
|
||
|
}
|
||
|
}
|
||
|
}
|