source: opengl-game/main-vulkan.cpp@ 40995d3

feature/imgui-sdl points-test
Last change on this file since 40995d3 was 2e77b3f, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 5 years ago

Move the debug status output from the main functions to the openglgame and vulkangame classes

  • Property mode set to 100644
File size: 595 bytes
RevLine 
[99d44b2]1#include "vulkan-game.hpp"
[e8ebc76]2
3#include <iostream>
4
[5edbd58]5#include "consts.hpp"
[76d19a8]6#include "crash-logger.hpp"
7
[e8ebc76]8using namespace std;
9
[76d19a8]10int __main(int argc, char* argv[]);
11
[e8ebc76]12int main(int argc, char* argv[]) {
[76d19a8]13 CrashLogger logger(__main, argc, argv);
14
15 exit(0);
16}
17
18int __main(int argc, char* argv[]) {
[99d44b2]19 cout << "Starting Vulkan Game..." << endl;
[e8ebc76]20
[99d44b2]21 VulkanGame game;
[e8ebc76]22
23 try {
[5edbd58]24 game.run(800, 600, GUI_FLAGS_WINDOW_FULLSCREEN);
[e8ebc76]25 } catch (const exception& e) {
26 cerr << e.what() << endl;
27 return EXIT_FAILURE;
28 }
29
30 cout << "Finished running the game" << endl;
31
32 return EXIT_SUCCESS;
33}
Note: See TracBrowser for help on using the repository browser.