예제 #1
0
파일: AppContext.cs 프로젝트: lythm/orb3d
        public static bool Initialize()
        {
            FBotEngine = new BotStudio.BotEngine.BotEngine();

            ThreadPool.SetMinThreads(4, 4);
            ThreadPool.SetMaxThreads(8, 8);

            BotTplList = new BotTemplateList();
            BotList = new BotList();
            return true;
        }
예제 #2
0
파일: AppContext.cs 프로젝트: lythm/orb3d
 public static void Release()
 {
     FBotEngine = null;
 }