15 lines
238 B
C++
15 lines
238 B
C++
#include "opengl.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
#include "game_window.hpp"
|
|
|
|
int main(int argc, const char *argv[]) {
|
|
(void) argv;
|
|
(void) argc;
|
|
|
|
GameWindow window(500, 500);
|
|
window.set_maxfps(60.0);
|
|
window.loop();
|
|
window.stop();
|
|
}
|