Example #1
0
        private static void Main(string[] args)
        {
            KoiInfo.Init();

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new ConfigWindow());
        }
Example #2
0
        void btnDecoder_Click(object sender, EventArgs e)
        {
            try {
                if (Assembly.GetExecutingAssembly().ManifestModule.GetType("KoiVM.Confuser.Internal.Fish") == null)
                {
                    KoiInfo.InitKoi(false);
                }
            }
            catch (Exception ex) {
                MessageBox.Show("Update to newest version first!\r\n" + ex.ToString(), "Koi System", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }

            ShowDecoder();
        }
Example #3
0
 protected override void Initialize(ConfuserContext context)
 {
     KoiInfo.Init(context);
 }