| 658 | ScriptData *data; |
| 659 | |
| 660 | bool operator()(const SQInteger &value) { sq_pushinteger(this->vm, value); return true; } |
| 661 | bool operator()(const std::string &value) { sq_pushstring(this->vm, value); return true; } |
| 662 | bool operator()(const SQBool &value) { sq_pushbool(this->vm, value); return true; } |
| 663 | bool operator()(const SQSaveLoadType &type) |
nothing calls this directly
no test coverage detected