godan
I’m using Urho as a static lib and I would like to pass some command line arguments to the app. I’m fairly new to this library, so for now, I’ve just used the sample code (Physics) to compile a standalone app. In that sample code, the application entry point is defined:
[code]DEFINE_APPLICATION_MAIN(Physics)
Physics::Physics(Context* context) :
Sample(context),
drawDebug_(false)
{
}[/code]
Is it possible to modify this macro so that command line arguments can be passed?