Windows, camera and a bit of shader

This commit is contained in:
Ben
2019-10-04 20:51:43 +01:00
parent fe448c3dd7
commit aeb6f46435
11 changed files with 2276 additions and 1 deletions

View File

@@ -1,5 +1,13 @@
#include <iostream>
#include "game.hpp"
int main(int argc, char** argv) {
std::cout << "smh" << std::endl;
Game game;
game.Setup(1080, 720);
game.Run();
return 0;
}