static */
| 721 | } |
| 722 | |
| 723 | /* static */ void ScriptInstance::LoadEmpty() |
| 724 | { |
| 725 | SlObject(nullptr, _script_byte); |
| 726 | /* Check if there was anything saved at all. */ |
| 727 | if (_script_sl_byte == 0) return; |
| 728 | |
| 729 | LoadObjects(nullptr); |
| 730 | } |
| 731 | |
| 732 | /* static */ ScriptInstance::ScriptData *ScriptInstance::Load(int version) |
| 733 | { |
nothing calls this directly
no test coverage detected