Exemplo n.º 1
0
        public MultiCheat()
        {
            keyHooker              = new globalKeyboardHook();
            triggerCheat           = new TriggerCheat(this);
            otherCheatsRealisation = new OtherCheatsRealisation(this);
            aimCheats              = new AimCheats(this);
            cheatSettings          = new CheatSettings(Constants.configFile, this);
            settings = cheatSettings.Load();

            //stop
            Overlay = new Overlay(otherCheatsRealisation, aimCheats);
        }
Exemplo n.º 2
0
 public Overlay(OtherCheatsRealisation OtherCheatsRealisation, AimCheats aimCheats)
 {
     this.OtherCheatsRealisation = OtherCheatsRealisation;
     this.aimCheats = aimCheats;
     SetupInstance();
 }