MainEntryPoints::getWindowTitle()
is also missing on all platforms)
Can somebody explain to me, why the tutorial code in
Samples/2.0/Tutorials/Tutorial01...
(also 02 and 03) only definesMainEntryPoints::createSystems()
on Apple and IOS? This leads to a linker error on Windows, because the method never gets defined elsewhere. Or did I miss something?
Hi @Neonit ! Sorry for late reply
Tutorial01 never calls MainEntryPoints::mainAppSingleThreaded nor MainEntryPoints::mainAppMultiThreaded as it defines its own custom main loop for tutorial purposes.
(i.e. INT WINAPI WinMainApp does what mainAppSingleThreaded would do). It does on iOS because iOS was adding too much complexity for a tutorial.
It shouldn't give you linker errors; but I think I see how it may be possible. What compiler were you using? And was it Debug or Release? x64 or x86?
Cheers