mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-02-20 00:04:23 -05:00
19 lines
319 B
C++
19 lines
319 B
C++
#pragma once
|
|
|
|
#include <glm/glm.hpp>
|
|
|
|
namespace wowee {
|
|
namespace game {
|
|
|
|
class Player {
|
|
public:
|
|
void setPosition(const glm::vec3& pos) { position = pos; }
|
|
const glm::vec3& getPosition() const { return position; }
|
|
|
|
private:
|
|
glm::vec3 position = glm::vec3(0.0f);
|
|
};
|
|
|
|
} // namespace game
|
|
} // namespace wowee
|