summaryrefslogtreecommitdiff
path: root/src/minecraft.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsrc/minecraft.hpp (renamed from src/first_app.hpp)14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/first_app.hpp b/src/minecraft.hpp
index d361296..5639ac7 100755
--- a/src/first_app.hpp
+++ b/src/minecraft.hpp
@@ -2,8 +2,8 @@
#include "xe_engine.hpp"
-#include "keyboard_movement_controller.hpp"
-#include "simple_renderer.hpp"
+#include "player_controller.hpp"
+#include "chunk_renderer.hpp"
#include "chunk.hpp"
#define GLM_FORCE_RADIANS
@@ -17,14 +17,14 @@
#include <iostream>
namespace app {
-class FirstApp {
+class Minecraft {
public:
- FirstApp();
- ~FirstApp();
+ Minecraft();
+ ~Minecraft();
- FirstApp(const FirstApp &) = delete;
- FirstApp operator=(const FirstApp &) = delete;
+ Minecraft(const Minecraft &) = delete;
+ Minecraft operator=(const Minecraft &) = delete;
void run();