SDK Engine extension API documentation
define for debug builds
Only enable code in debug builds
#if defined(DM_DEBUG)
// ...
#endif
define for release builds
Only enable code in release builds
#if defined(DM_RELEASE)
// ...
#endif
define for headless builds
Only enable code in headless builds
#if defined(DM_HEADLESS)
// ...
#endif
get the config file
app_params - The app params sent to the extension dmExtension::AppInitialize / dmExtension::AppInitialize
config - The game project config file
get the web server handle
app_params - The app params sent to the extension dmExtension::AppInitialize / dmExtension::AppInitialize
server - The web server handle
get the game object register
app_params - The app params sent to the extension dmExtension::AppInitialize / dmExtension::AppInitialize
register - The game object register
get the hid context
app_params - The app params sent to the extension dmExtension::AppInitialize / dmExtension::AppInitialize
context - The hid context