mahlendur/_work/Data/Scripts/Content/Spine/Spine_TestMode.d
Daniel Heße 892a40ff0f Initial commit with Subversion-codebase from 13/05/2022.
Cleaned up the mess, at this time, only viable data get synced (_work directory for Gothic-data, miranda for mdc-scripts.
Need to symlink files to a working directory.
2022-05-13 17:38:52 +02:00

10 lines
266 B
D

var int Spine_GetTestModeFunc;
// returns TRUE if mod is started in testmode, otherwise FALSE
func int Spine_GetTestMode() {
if (Spine_Initialized && Spine_GetTestModeFunc) {
CALL__cdecl(Spine_GetTestModeFunc);
return CALL_RetValAsInt();
};
return FALSE;
};