Small fix
This commit is contained in:
parent
9019f9c299
commit
07cc872b05
|
@ -2,7 +2,12 @@
|
|||
|
||||
#include "gl2d/gl2d.h"
|
||||
#include <glad/glad.h>
|
||||
#include "shader.h"
|
||||
#include "camera.h"
|
||||
#include "glm/vec2.hpp"
|
||||
#include <texture.h>
|
||||
#include "renderer.h"
|
||||
#include "skyBox.h"
|
||||
|
||||
|
||||
class GameInput
|
||||
|
@ -63,7 +68,7 @@ public:
|
|||
|
||||
Button getKey(int k) const
|
||||
{
|
||||
if (k < 0 || k >= BUTTONS_COUNT)
|
||||
if(k < 0 || k >= BUTTONS_COUNT)
|
||||
{
|
||||
return Button{};
|
||||
}
|
||||
|
@ -94,7 +99,7 @@ public:
|
|||
|
||||
void resetInputsThisFrame()
|
||||
{
|
||||
for (int i = 0; i < BUTTONS_COUNT; i++)
|
||||
for(int i=0; i< BUTTONS_COUNT; i++)
|
||||
{
|
||||
buttons[i].resetInput();
|
||||
}
|
||||
|
@ -138,6 +143,7 @@ private:
|
|||
|
||||
};
|
||||
|
||||
|
||||
class Game
|
||||
{
|
||||
public:
|
||||
|
@ -145,7 +151,7 @@ public:
|
|||
Game(int screenW, int screenH) { onCreate(screenW, screenH); }
|
||||
~Game() { onDestroy(); }
|
||||
|
||||
void onUpdate(float deltaTime, const GameInput& input);
|
||||
void onUpdate(float deltaTime, const GameInput &input);
|
||||
|
||||
|
||||
void updateWindowMetrics(int screenW, int screenH);
|
||||
|
@ -160,5 +166,15 @@ private:
|
|||
gl2d::Font font;
|
||||
int screenW, screenH;
|
||||
|
||||
Camera *camera = 0;
|
||||
bool isCreativeCamera = 0;
|
||||
|
||||
ChunksRenderer renderer;
|
||||
|
||||
ChunkManager chunkManager;
|
||||
|
||||
gl2d::Texture arrowTexture;
|
||||
|
||||
SkyBox skyBox;
|
||||
|
||||
};
|
Loading…
Reference in New Issue