Interface.h 207 B

123456789101112131415
  1. #pragma once
  2. class Interface
  3. {
  4. public:
  5. Interface();
  6. Interface(int);
  7. ~Interface();
  8. void draw(void);
  9. void update(float deltaTime);
  10. int crystalWidth, crystalHeight, crystalOffset;
  11. int maxCrystals;
  12. };