Open now works by pressing CTRL+O

This commit is contained in:
MusicalProgrammer
2018-10-30 19:14:17 -04:00
parent 8a097f7eb1
commit 08a3f9f307
3 changed files with 76 additions and 22 deletions

View File

@@ -13,7 +13,10 @@ public:
void setMessage(std::string);
void setMessageBrickCount();
void clearMessage();
bool load();
bool debugGetOpen();
bool getOpen();
bool load(const char* filename);
bool readXMLFileStream(std::ifstream* file);
void drawMessage(RenderDevice*);
WorkspaceInstance* getWorkspace();
WorkspaceInstance* workspace;
@@ -21,6 +24,7 @@ public:
LevelInstance * getLevel();
Instance* guiRoot;
std::string message;
std::string _loadedFileName;
bool showMessage;
G3D::GFontRef font;
Instance* getGuiRoot();