VNSceneGen is more or less working

This commit is contained in:
2023-05-18 21:39:59 -07:00
parent e5b7bb9eec
commit 26252d3b64
11 changed files with 268 additions and 361 deletions

View File

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