blob: c656f2f59d02ffba3732d6afe85f21ac58a4ab18 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#pragma once
#include <SFML/Window.hpp>
#include "../World.hpp"
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include "Shader.hpp"
#include "Texture.hpp"
#include "Camera3D.hpp"
class Display {
sf::Window *window;
World* world;
std::vector<Section*> toRender;
public:
Display(unsigned int winWidth, unsigned int winHeight, const char winTitle[9], World *worldPtr);
bool IsClosed();
void SetPlayerPos(double playerX, double playerY, double playerZ);
void MainLoop();
unsigned int width() {
return window->getSize().x;
}
unsigned int height() {
return window->getSize().y;
}
};
|