| 673 | } |
| 674 | |
| 675 | Maybe<Json> Object::receiveMessage(ConnectionId sendingConnection, String const& message, JsonArray const& args) { |
| 676 | return m_scriptComponent.handleMessage(message, sendingConnection == world()->connection(), args); |
| 677 | } |
| 678 | |
| 679 | Json Object::configValue(String const& name, Json const& def) const { |
| 680 | if (auto orientation = currentOrientation()) |
nothing calls this directly
no test coverage detected