mirror of
https://github.com/Relintai/rpi_player.git
synced 2024-11-23 15:27:42 +01:00
18 lines
301 B
C++
18 lines
301 B
C++
#ifndef IMPL_APPLICATION_H
|
|
#define IMPL_APPLICATION_H
|
|
|
|
#include "application.h"
|
|
|
|
#include "main_scene.h"
|
|
|
|
class ImplApplication : public Application {
|
|
public:
|
|
ImplApplication() : Application() {
|
|
scene = new MainScene();
|
|
}
|
|
~ImplApplication() {
|
|
delete scene;
|
|
}
|
|
};
|
|
|
|
#endif |