Parallel event processing

This commit is contained in:
2023-04-24 20:04:31 -07:00
parent 6bc6917b0c
commit e01b3d6346
12 changed files with 238 additions and 61 deletions

View File

@ -10,6 +10,6 @@
using namespace Dawn;
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
return new HelloWorldScene(game);
// return new TestScene(game);
// return new HelloWorldScene(game);
return new TestScene(game);
}