Ejemplo n.º 1
0
 public static HackFootprint Create <T>(HackSignature <T> missingHack) where T : IPatchFootprint
 {
     IPatchFootprint[] p = new IPatchFootprint[missingHack.Patches.Count];
     missingHack.Patches.ToArray().CopyTo(p, 0);
     return(new HackFootprint(missingHack.Settings, p));
 }
Ejemplo n.º 2
0
 public PatchFootprint(IPatchFootprint pf) : this(pf.Address, pf.Length)
 {
 }