1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#include "testInt.h"
#include "testOgre.h"
#include <QApplication>
#define WIN32_LEAN_AND_MEAN
#include "windows.h"
INT WINAPI WinMain( HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT )
{
YeahApplication app;
app.createScene();
app.go();
}
int main (int argc, char ** argv)
{
QApplication monApplication(argc,argv);
helloworldIntelligente maFenetrePrincipale;
// maFenetrePrincipale.setGeometry(maFenetrePrincipale.autoAjuste());
maFenetrePrincipale.show();
return monApplication.exec();
} |