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