Crystal.h 320 B

12345678910111213141516171819
  1. #pragma once
  2. #include "Entity.h"
  3. #include <string>
  4. class Crystal :
  5. public Entity
  6. {
  7. public:
  8. Crystal(const std::string &filled, const std::string &empty,
  9. const Vec3f &position, Vec3f &rotation, const float &scale);
  10. ~Crystal();
  11. bool isFilled;
  12. void draw();
  13. void collide();
  14. private:
  15. std::string filled, empty;
  16. };