summaryrefslogtreecommitdiff
path: root/src/minecraft.hpp
diff options
context:
space:
mode:
authortylermurphy534 <tylermurphy534@gmail.com>2022-10-01 14:35:16 -0400
committertylermurphy534 <tylermurphy534@gmail.com>2022-10-01 14:35:16 -0400
commit6a001c4840140e71ba1672a4576d52d1a62c0922 (patch)
tree8b3ebdbb7e2580ca5de14dca895a779553026c6f /src/minecraft.hpp
parentvariable chunk sizes (diff)
downloadminecraftvulkan-6a001c4840140e71ba1672a4576d52d1a62c0922.tar.gz
minecraftvulkan-6a001c4840140e71ba1672a4576d52d1a62c0922.tar.bz2
minecraftvulkan-6a001c4840140e71ba1672a4576d52d1a62c0922.zip
rename src files, move .o to /bin
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();