Added a great scene generator

This commit is contained in:
2023-05-16 20:37:41 -07:00
parent bce6dbffa6
commit 5ce7950945
13 changed files with 139 additions and 24 deletions

View File

@@ -5,11 +5,11 @@
#include "game/DawnGame.hpp"
#include "scenes/HelloWorldScene.hpp"
#include "vnscenes/TestScene.hpp"
#include "scenes/TestScene.hpp"
using namespace Dawn;
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
return new HelloWorldScene(game);
// return new TestScene(game);
// return new HelloWorldScene(game);
return new TestScene(game);
}