You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
400 B

  1. #ifndef SCENE_THERMOMETER_CALIBRATION_H
  2. #define SCENE_THERMOMETER_CALIBRATION_H
  3. #include "Scenes/Scene.h"
  4. #include "DataSaveLoad.h"
  5. class SceneThermometerCalibration : public Scene
  6. {
  7. public:
  8. void Initialize() override;
  9. void Update() override;
  10. void Draw(GraphicsEngine *graphics) override;
  11. void OnButtonClic(BTN btn) override;
  12. void Destroy() override;
  13. private:
  14. float adjustement;
  15. };
  16. #endif