| 272 | |
| 273 | template <typename U> |
| 274 | void GameObject::sendInitArg(const std::string& argName, U value) |
| 275 | { |
| 276 | Debug::Log->debug( |
| 277 | "<GameObject> Sending Local.Init argument {0} to GameObject {1}", argName, |
| 278 | m_id); |
| 279 | t_local->pushParameter("Init", argName, value); |
| 280 | } |
| 281 | } // namespace obe::Script |
nothing calls this directly
no test coverage detected