diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2022-09-23 13:20:30 -0400 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2022-09-23 13:20:30 -0400 |
commit | 9b7d14361904a9c2bceb8de335fd5da169fabd59 (patch) | |
tree | 231348855310530145f8ce4bb35931d36bd74438 /engine/xe_render_system.hpp | |
parent | delete old files (diff) | |
download | minecraftvulkan-9b7d14361904a9c2bceb8de335fd5da169fabd59.tar.gz minecraftvulkan-9b7d14361904a9c2bceb8de335fd5da169fabd59.tar.bz2 minecraftvulkan-9b7d14361904a9c2bceb8de335fd5da169fabd59.zip |
abstract user input, refactor #include's
Diffstat (limited to '')
-rw-r--r-- | engine/xe_render_system.hpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/engine/xe_render_system.hpp b/engine/xe_render_system.hpp index a8b4145..098727c 100644 --- a/engine/xe_render_system.hpp +++ b/engine/xe_render_system.hpp @@ -1,15 +1,17 @@ #pragma once -#include <vulkan/vulkan.h> #include "xe_device.hpp" #include "xe_pipeline.hpp" #include "xe_game_object.hpp" -#include "xe_descriptors.hpp" +#include "xe_swap_chain.hpp" #include "xe_renderer.hpp" +#include "xe_descriptors.hpp" #include "xe_engine.hpp" -#include "xe_image.hpp" +#include <vulkan/vulkan.h> #include <memory> +#include <stdexcept> +#include <iostream> #include <map> namespace xe { |