mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-08-25 12:23:58 -04:00
e2a588931c
git-svn-id: svn://localhost@68 8062f311-0dae-4547-b526-b8ab9ac864a5
37 lines
1012 B
C++
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
|