summaryrefslogtreecommitdiff
path: root/src/first_app.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsrc/first_app.hpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/first_app.hpp b/src/first_app.hpp
index bcdf33e..081113d 100755
--- a/src/first_app.hpp
+++ b/src/first_app.hpp
@@ -1,8 +1,6 @@
#pragma once
-#include "xe_renderer.hpp"
-#include "xe_window.hpp"
-#include "xe_device.hpp"
+#include "xe_engine.hpp"
#include "xe_game_object.hpp"
#include "xe_descriptors.hpp"
@@ -26,11 +24,8 @@ class FirstApp {
private:
void loadGameObjects();
- XeWindow xeWindow{WIDTH, HEIGHT, "Hello Vulkan!"};
- XeDevice xeDevice{xeWindow};
- XeRenderer xeRenderer{xeWindow, xeDevice};
+ XeEngine xeEngine;
- std::unique_ptr<XeDescriptorPool> globalPool{};
std::vector<XeGameObject> gameObjects;
};
} \ No newline at end of file