mirror of
https://github.com/ndeadly/MissionControl
synced 2024-12-11 21:32:36 +00:00
19 lines
341 B
C++
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;
|
|
|
|
};
|
|
|