RandomObject.h 449 B

123456789101112131415161718192021222324252627
  1. //
  2. // Created by janco on 6/22/16.
  3. //
  4. #ifndef OPENGLINDIVIDUEEL_RANDOMOBJECT_H
  5. #define OPENGLINDIVIDUEEL_RANDOMOBJECT_H
  6. #include "Vector.h"
  7. #include <string>
  8. #include <vector>
  9. class RandomObject {
  10. public:
  11. RandomObject();
  12. void draw();
  13. void update(float elapsedTime) {};
  14. Vec3f position;
  15. Vec3f rotation;
  16. float scale;
  17. std::string text;
  18. std::vector<Vec3f> randomobject;
  19. };
  20. #endif //OPENGLINDIVIDUEEL_RANDOMOBJECT_H