Files
GDevelop/IDE/Game_Develop_EditorApp.h
T
Florian e2a588931c Modified events editor so as to allow direct edition of actions and conditions.
git-svn-id: svn://localhost@68 8062f311-0dae-4547-b526-b8ab9ac864a5
2010-03-13 11:01:33 +00:00

37 lines
1012 B
C++

/***************************************************************
* Name: Game_Develop_EditorApp.h
* Purpose: Defines Application Class
* Author: Florian "4ian" Rival ()
* Created: 2008-03-01
* Copyright: Florian "4ian" Rival ()
* License:
**************************************************************/
#ifndef GAME_DEVELOP_EDITORAPP_H
#define GAME_DEVELOP_EDITORAPP_H
#include <wx/app.h>
#include <wx/log.h>
#include "GDL/Game.h"
#include "Game_Develop_EditorMain.h"
class Game_Develop_EditorApp : public wxApp
{
public:
virtual bool OnInit();
virtual int OnExit();
#ifndef DEBUG
virtual void OnUnhandledException();
virtual bool OnExceptionInMainLoop();
#endif
Game_Develop_EditorFrame * Frame;
wxLogGui *log;
wxLogStderr *log_stderr_;
wxLogChain *logChain;
wxLogChain *logChain2;
wxLocale m_locale;
};
#endif // GAME_DEVELOP_EDITORAPP_H