Skip to content
Snippets Groups Projects
Commit d1efac24 authored by thebagleboy's avatar thebagleboy
Browse files

Created output for chunks:w

parent 3ce97e6a
No related merge requests found
......@@ -7,5 +7,6 @@
#include "save-manager.h"
#include "game-state.h"
#include "chunk.h"
#include "utils/logger.h"
#endif // MAIN_H
......@@ -37,6 +37,7 @@ $(BUILD_DIR)/%.o: $(SRC_DIR)/%.cpp
clean:
rm -rf $(BIN_DIR)/* $(BUILD_DIR)/*
rm -rf ./*~ ./*.swp
run: $(TARGET)
./$(TARGET)
......
......@@ -6,6 +6,9 @@ int main() {
GameState state = Uninitialised;
// Initialise
Logger logger();// = Logger::instance();
// Logger& logger = Logger::instance();
logger.setLogLevel( LogLevel::DEBUG );
int tickCount = 0;
SaveManager saveManager;
state = Initialise;
......@@ -39,6 +42,6 @@ int main() {
// Clean-up
// Return
std::cout << "Process Ending" << std::endl;
// logger.info( "Process Enging" );
return 0;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment