diff --git a/runtime/PyLoader/libstd/events.py b/runtime/PyLoader/libstd/events.py index 090cdc7..27e841b 100644 --- a/runtime/PyLoader/libstd/events.py +++ b/runtime/PyLoader/libstd/events.py @@ -1,9 +1,13 @@ # Function definations for the intellisense # Author: Grinch_ -# Last updated on: 06/06/2021 +# Last updated on: 07/06/2021 import _events +def on_script_terminate(error_occured: bool): + '''Callback function, is called after a script has been terminated''' + pass + def on_veh_create(hveh :int) -> None: '''Callback function, is called after a new vehicle is created''' pass @@ -38,4 +42,4 @@ def on_obj_render(hobj :int) -> None: def on_obj_destroy(hobj :int) -> None: '''Callback function, is called before a object is destroyed''' - pass \ No newline at end of file + pass