diff options
author | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-25 12:13:07 -0400 |
---|---|---|
committer | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-25 12:13:07 -0400 |
commit | ffd2d8220d57587da9a73183f9aa1bdaff303f3f (patch) | |
tree | 32202311cfb74c2a2d522b7192480bed87b1cab8 /src/first_app.hpp | |
parent | vertex data no longer hard coded (diff) | |
parent | delete unused folder (diff) | |
download | minecraftvulkan-ffd2d8220d57587da9a73183f9aa1bdaff303f3f.tar.gz minecraftvulkan-ffd2d8220d57587da9a73183f9aa1bdaff303f3f.tar.bz2 minecraftvulkan-ffd2d8220d57587da9a73183f9aa1bdaff303f3f.zip |
merge in input
Diffstat (limited to 'src/first_app.hpp')
-rwxr-xr-x | src/first_app.hpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/first_app.hpp b/src/first_app.hpp index d7beb78..6fb63e1 100755 --- a/src/first_app.hpp +++ b/src/first_app.hpp @@ -1,9 +1,16 @@ #pragma once #include "xe_engine.hpp" -#include "xe_game_object.hpp" -#include "xe_descriptors.hpp" +#include "keyboard_movement_controller.hpp" +#include "simple_renderer.hpp" + +#define GLM_FORCE_RADIANS +#define GLM_FORCE_DEPTH_ZERO_TO_ONE +#include <glm/glm.hpp> +#include <glm/gtc/constants.hpp> +#include <array> +#include <string> #include <memory> #include <vector> |