| 85 | |
| 86 | template <class TParamWidget> |
| 87 | TParamWidget* createParam(math::Vec pos, engine::Module* module, int paramId) { |
| 88 | TParamWidget* o = new TParamWidget; |
| 89 | o->box.pos = pos; |
| 90 | o->app::ParamWidget::module = module; |
| 91 | o->app::ParamWidget::paramId = paramId; |
| 92 | o->initParamQuantity(); |
| 93 | return o; |
| 94 | } |
| 95 | |
| 96 | |
| 97 | template <class TParamWidget> |
nothing calls this directly
no test coverage detected