main.cpp 312 B

123456789101112131415161718
  1. #include <windows.h>
  2. #include "CmEditorApplication.h"
  3. using namespace CamelotEditor;
  4. int CALLBACK WinMain(
  5. _In_ HINSTANCE hInstance,
  6. _In_ HINSTANCE hPrevInstance,
  7. _In_ LPSTR lpCmdLine,
  8. _In_ int nCmdShow
  9. )
  10. {
  11. gEditorApp().startUp();
  12. gEditorApp().run();
  13. gEditorApp().shutDown();
  14. }