HDNes/hdnes/mainApp.h
mkwong98 5ae36cc2c7 Add the rest of source code and doc
Added folder for C++ code. Added shaders, user manual, wxwidget files
and VS files
2014-06-25 22:40:29 +08:00

16 lines
221 B
C++

#pragma once
#include "stdafx.h"
#include "sysSetting.h"
#include "fraHDNesImp.h"
class mainApp : public wxApp
{
public:
fraHDNesImp* mainForm;
bool initOK;
mainApp(void);
~mainApp(void);
virtual bool OnInit();
};