| 388 | } |
| 389 | |
| 390 | Maybe<Json> Projectile::receiveMessage(ConnectionId sendingConnection, String const& message, JsonArray const& args) { |
| 391 | return m_scriptComponent.handleMessage(message, sendingConnection == world()->connection(), args); |
| 392 | } |
| 393 | |
| 394 | Maybe<LuaValue> Projectile::callScript(String const& func, LuaVariadic<LuaValue> const& args) { |
| 395 | return m_scriptComponent.invoke(func, args); |
nothing calls this directly
no test coverage detected