2022-09-19 01:20:51 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-09-19 11:08:42 +00:00
|
|
|
#include "xe_engine.hpp"
|
2022-09-19 01:20:51 +00:00
|
|
|
|
2022-10-01 18:35:16 +00:00
|
|
|
#include "player_controller.hpp"
|
2022-09-27 21:03:43 +00:00
|
|
|
#include "chunk.hpp"
|
2022-10-01 20:28:38 +00:00
|
|
|
#include "world.hpp"
|
2022-09-23 17:20:30 +00:00
|
|
|
|
|
|
|
#define GLM_FORCE_RADIANS
|
|
|
|
#define GLM_FORCE_DEPTH_ZERO_TO_ONE
|
|
|
|
#include <glm/glm.hpp>
|
|
|
|
#include <glm/gtc/constants.hpp>
|
|
|
|
#include <array>
|
|
|
|
#include <string>
|
2022-09-19 01:20:51 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
2022-09-26 15:03:27 +00:00
|
|
|
#include <iostream>
|
2022-09-19 01:20:51 +00:00
|
|
|
|
2022-09-20 01:28:41 +00:00
|
|
|
namespace app {
|
2022-10-01 18:35:16 +00:00
|
|
|
class Minecraft {
|
2022-09-19 01:20:51 +00:00
|
|
|
public:
|
|
|
|
|
2022-10-01 18:35:16 +00:00
|
|
|
Minecraft();
|
|
|
|
~Minecraft();
|
2022-09-19 01:20:51 +00:00
|
|
|
|
|
|
|
void run();
|
|
|
|
|
|
|
|
private:
|
2022-09-20 01:28:41 +00:00
|
|
|
|
|
|
|
static constexpr int WIDTH = 800;
|
|
|
|
static constexpr int HEIGHT = 600;
|
2022-09-19 01:20:51 +00:00
|
|
|
|
2022-10-01 20:28:38 +00:00
|
|
|
xe::Engine engine;
|
2022-09-19 01:20:51 +00:00
|
|
|
};
|
|
|
|
}
|