コード例 #1
0
        static void Main(string[] args)
        {
            AIEntry.RegisterAI(); // register the AI module
            AICommonDynamic.Register();
            AIUtil.main();        // test case

            Console.ReadLine();
        }
コード例 #2
0
ファイル: AIEntry.cs プロジェクト: isoundy000/mahjong_AI
        public static void RegisterAI()
        {
            Console.WriteLine(" ====== AI start ======");

            HuUtil.load();
            AIUtil.load();

            Console.WriteLine(" ====== AI end ======");
        }