MissionControl/applet/include/scenes/testcontrollerscene.hpp
2020-04-03 00:22:45 +02:00

19 lines
341 B
C++

#pragma once
#include "application.hpp"
#include "ui/scene.hpp"
class TestControllerScene : public mc::ui::Scene{
public:
TestControllerScene();
~TestControllerScene();
void draw(void);
void handleInput(const mc::app::UserInput *input);
private:
SDL_Texture *m_imgswitchpro;
};