minecraftvulkan/src/first_app.hpp

39 lines
681 B
C++
Raw Normal View History

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
#include "keyboard_movement_controller.hpp"
#include "simple_renderer.hpp"
#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-09-19 01:20:51 +00:00
class FirstApp {
public:
FirstApp();
~FirstApp();
FirstApp(const FirstApp &) = delete;
FirstApp operator=(const FirstApp &) = delete;
void run();
private:
2022-09-20 01:28:41 +00:00
static constexpr int WIDTH = 800;
static constexpr int HEIGHT = 600;
2022-09-25 01:16:13 +00:00
xe::Engine xeEngine;
2022-09-19 01:20:51 +00:00
2022-09-25 01:16:13 +00:00
std::vector<xe::GameObject> gameObjects;
2022-09-19 01:20:51 +00:00
};
}