Пример #1
0
        private void onTick(object sender, EventArgs e)
        {
            if (firstTime)             // if this is the users first time loading the mod, this information will appear
            {
                Notification.Show(ModName + " by " + Developer + " Loaded");
                firstTime = false;

                ss            = base.Settings;
                jetWantedCtrl = new JetWantedController(ss);
                new StringCheats();
            }


            else
            {
                jetWantedCtrl.onTick();
            }
        }