コード例 #1
0
        public static bool Init(string WindowTitle, int Width, int Height, WIndowModes DisplayMode, int RenderScale, int MsaaLevel)
        {
            bool SucessFlag = CometEngineClientWin32.Init(WindowTitle, Width, Height, DisplayMode,
                                                          Process.GetCurrentProcess().Handle /*hInstance*/, string.Empty /*lpCmdLine*/);

            if (SucessFlag == false)
            {
                return(false);
            }

            CometEngineDXRenderer.EnableDebugDevice(true);
            SucessFlag = CometEngineDXRenderer.Init(Width, Height, RenderScale, MsaaLevel, (DisplayMode == WIndowModes.FULL_SCREEN));
            if (SucessFlag == false)
            {
                return(false);
            }

            return(true);
        }
コード例 #2
0
 public static void Launch()
 {
     CometEngineClientWin32.Launch();
 }