mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-05-01 22:17:59 +02: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 |