Interface.h 172 B

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