EngineSettings.chunksLoadSpeed; removed unused assets

This commit is contained in:
MihailRis
2023-11-06 00:20:58 +03:00
parent 7730da0056
commit e437cc99ce
14 changed files with 55 additions and 33 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef PLAYER_CONTROL_H_
#define PLAYER_CONTROL_H_
#include <glm/glm.hpp>
class PhysicsSolver;
class Chunks;
class Player;
class Level;
class PlayerController {
Level* level;
public:
glm::vec3 selectedBlockPosition;
int selectedBlockId = -1;
PlayerController(Level* level);
void update_controls(float delta);
void update_interaction();
};
#endif /* PLAYER_CONTROL_H_ */