コード例 #1
0
ファイル: HackEntity.cs プロジェクト: ZQiu233/QTRHacker
 protected HackEntity(QHackContext ctx, ClrType type, nuint baseAddress)
 {
     Context     = ctx;
     Type        = type;
     BaseAddress = baseAddress;
 }
コード例 #2
0
ファイル: HackObject.cs プロジェクト: ZQiu233/QTRHacker
 public HackObject(QHackContext context, ClrType type, nuint address) : base(context, type, address)
 {
 }
コード例 #3
0
ファイル: HackValue.cs プロジェクト: ZQiu233/QTRHacker
 public HackValue(QHackContext ctx, ClrType type, nuint baseAddress) : base(ctx, type, baseAddress)
 {
 }
コード例 #4
0
 public HackMethod(QHackContext context, ClrMethod method)
 {
     Context           = context;
     InternalClrMethod = method;
 }