mirror of
https://github.com/Relintai/rpi_player.git
synced 2025-02-23 15:54:18 +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
|