Files
BlitzNext/debugger/debuggerapp.hpp
T
Michael Fabian 'Xaymar' Dirks 2dbd84c794 debugger: CMake-ify
2019-01-18 15:55:40 +01:00

21 lines
287 B
C++

#ifndef DEBUGGERAPP_H
#define DEBUGGERAPP_H
#include "mainframe.hpp"
class DebuggerApp : public CWinApp{
MainFrame *main_frame;
public:
~DebuggerApp();
virtual BOOL InitInstance();
virtual int ExitInstance();
MainFrame *mainFrame();
};
extern DebuggerApp debuggerApp;
#endif