| 2772 | } |
| 2773 | |
| 2774 | int Initialize() { |
| 2775 | srand(time(nullptr)); |
| 2776 | |
| 2777 | g_Width = GetCanvasWidth(); |
| 2778 | g_Height = GetCanvasHeight(); |
| 2779 | |
| 2780 | _RES_TRY(InitializeGlfw()); |
| 2781 | _RES_TRY(InitializeImGui()); |
| 2782 | |
| 2783 | return 0; |
| 2784 | } |
| 2785 | |
| 2786 | void Finalize() { |
| 2787 | glfwTerminate(); |
no test coverage detected