Cleanup: Remove UITestScene. I believe test functionality will be better expressed as Python scripts

This commit is contained in:
John McCardle 2023-08-12 19:48:29 -04:00
commit 26cb410b8e
3 changed files with 2 additions and 383 deletions

View file

@ -1,6 +1,6 @@
#include "GameEngine.h"
#include "MenuScene.h"
#include "UITestScene.h"
//#include "UITestScene.h"
#include "ActionCode.h"
#include "McRFPy_API.h"
#include "PythonScene.h"
@ -15,7 +15,7 @@ GameEngine::GameEngine()
//std::cout << "Constructing MenuScene" << std::endl;
scenes["menu"] = new MenuScene(this);
//std::cout << "Constructed MenuScene" <<std::endl;
scenes["play"] = new UITestScene(this);
//scenes["play"] = new UITestScene(this);
//api = new McRFPy_API(this);
McRFPy_API::game = this;