示例#1
0
 protected HackEntity(QHackContext ctx, ClrType type, nuint baseAddress)
 {
     Context     = ctx;
     Type        = type;
     BaseAddress = baseAddress;
 }
示例#2
0
 public HackObject(QHackContext context, ClrType type, nuint address) : base(context, type, address)
 {
 }
示例#3
0
 public HackValue(QHackContext ctx, ClrType type, nuint baseAddress) : base(ctx, type, baseAddress)
 {
 }
示例#4
0
 public HackMethod(QHackContext context, ClrMethod method)
 {
     Context           = context;
     InternalClrMethod = method;
 }