mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
21 lines
304 B
C
21 lines
304 B
C
|
#ifndef GAME_APPLICATION_H
|
||
|
#define GAME_APPLICATION_H
|
||
|
|
||
|
#include "application.h"
|
||
|
|
||
|
#include "game_scene.h"
|
||
|
|
||
|
class GameApplication : public Application {
|
||
|
public:
|
||
|
GameApplication() : Application() {
|
||
|
scene = new GameScene();
|
||
|
}
|
||
|
|
||
|
~GameApplication() {
|
||
|
delete scene;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|