Player.h 233 B

123456789101112131415161718192021
  1. #pragma once
  2. #include "Singleton.h"
  3. #include "vector.h"
  4. class Model;
  5. class Player : public Singleton<Player>
  6. {
  7. public:
  8. Player();
  9. void setCamera();
  10. Vec3f position;
  11. Vec2f rotation;
  12. Model* leftWeapon;
  13. Model* rightWeapon;
  14. };