| 88 | std::vector<std::unique_ptr<UserComponent>> components; |
| 89 | |
| 90 | ScriptComponents() = default; |
| 91 | |
| 92 | ScriptComponents(ScriptComponents&& other) |
| 93 | : components(std::move(other.components)) { |
nothing calls this directly
no outgoing calls
no test coverage detected