done barely anything smh

This commit is contained in:
Ben
2020-05-20 01:12:18 +01:00
parent 24d95d1ad4
commit e4dbfa672c
8 changed files with 142 additions and 11 deletions

View File

@@ -13,6 +13,7 @@
#include "display.hpp"
#include "settings.hpp"
#include "Rendering/texture.hpp"
#define __DEBUG
@@ -45,7 +46,6 @@ void Loop( Display* display )
// make framerate agnostic
display->Input( &e );
// rendering here
display->NextFrame();
@@ -73,6 +73,8 @@ int main( int argc, char** argv )
Display display { WindowWidth, WindowHeight, version.str() };
Loop( &display );
}