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.
10 lines
266 B
D
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;
|
|
};
|