diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-02 16:34:05 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-02 22:35:39 +0200 |
| commit | 6abcd7d52cda334c58ec999d212491fc24f13c9d (patch) | |
| tree | 86998508afe8eb7447ad70a2d5beebdbc9995a8f /src/object.cpp | |
| parent | 03b67a512ec9ef1cf5c337aa5c47a5a76d4a8a61 (diff) | |
script lifecycle mostly implemented
Diffstat (limited to 'src/object.cpp')
| -rw-r--r-- | src/object.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/object.cpp b/src/object.cpp index cd883795..f4c803b7 100644 --- a/src/object.cpp +++ b/src/object.cpp @@ -361,4 +361,8 @@ bool object::is_dynamic() const return atlas->info().fps > 0; } +void object::init_script(const std::shared_ptr<object>&) {} +void object::destroy_script_pre(const std::shared_ptr<object>&, script_destroy_reason) {} +void object::destroy_script_post() {} + } // namespace floormat |
