is anyone here?

This commit is contained in:
Ben Kyd
2019-11-12 14:56:46 +00:00
parent 11445de644
commit 859aef604c
8 changed files with 61 additions and 23 deletions

View File

@@ -13,7 +13,19 @@ Entity::Entity(glm::vec3 postion, glm::vec3 direction, std::shared_ptr<Camera> c
}
}
Player::Player {
Player::Player(glm::vec3 position, glm::vec3 direction) {
}
void Player::Move(Uint8* state) {
}
void Player::HandleMouseSDL(SDL_Event e) {
}
void UpdatePosition(glm::vec3 position);
void UpdateDirection(glm::vec3 direction);
void CameaUpdateProjection(int xres, int yres);