14 template <
typename... TComps>
17 using FunctionType = std::function<void(TComps&...)>;
21 explicit System(FunctionType fn) {
25 auto operator=(FunctionType fn) ->
System<TComps...>& {
30 void operator() (TComps&... comps) {
35 void set(FunctionType fn) {
36 m_function = std::move(fn);
39 FunctionType m_function {};