| 1197 | } |
| 1198 | |
| 1199 | List<Vec2I> Object::interactiveSpaces() const { |
| 1200 | if (auto orientation = currentOrientation()) { |
| 1201 | if (auto iSpaces = orientation->interactiveSpaces) |
| 1202 | return *iSpaces; |
| 1203 | } |
| 1204 | return spaces(); |
| 1205 | } |
| 1206 | |
| 1207 | Maybe<LuaValue> Object::callScript(String const& func, LuaVariadic<LuaValue> const& args) { |
| 1208 | return m_scriptComponent.invoke(func, args); |
no outgoing calls
no test coverage detected