-onBegin() return type was changed from void to bool

-disabling system execution in onBegin() funciton
This commit is contained in:
Mergul 2018-10-26 17:43:51 +02:00
parent d3f7593afc
commit f666dfd1d5
3 changed files with 43 additions and 30 deletions

View file

@ -111,9 +111,10 @@ int main()
writeln("On Test System destroy.");
}
void onBegin()
bool onBegin()
{
//writeln("On Test System begin.");
return true;
}
void onEnd()