Quote: "However that guide needs some more fleshing out, especially the very last part is way too cryptic"
True, plus it the CoreForApp.h file shown is basically for Windows. It shows only PostQuitMessage(0) cal in AppForceExit. The full text should look like this:
void AppForceExit ( void )
{
// completely exit the app
#ifdef AGKWINDOWS
PostQuitMessage(0);
#endif
#ifdef AGKIOS
// forcing a quit in iOS is against recommended guidelines - use HOME button
// the exit button is disabled on AGKIOS builds
#endif
#ifdef IDE_MEEGO
g_appptr->quit();
#endif
#ifdef IDE_MAC
glfwCloseWindow();
#endif
}
Quote: "
The platform specific "Core.cpp" (or equiviant) should be traversed to remove any dependencies on any of the above files including reliance on such members as windowtitle, devicewidth, deviceheight, fullscreen and resolution mode."
This statement is as clear as mud. And not quite right. Removing the include for CoreForeApp.h from Core.cpp and Core.m (Windows/iOS) cause compile failures.
The template guide started well and then petered out.
When the next v108 comes out that actually allows us to compile something not Tier 1, then I'll work on making some good templates and post them.
Cheers,
Ancient Lady
AGK Community Tester