#ifndef ENGINE_INCLUDE_COMPONENTS_CUSTOM_H_ #define ENGINE_INCLUDE_COMPONENTS_CUSTOM_H_ #include namespace engine { struct CustomComponent { std::function onUpdate; // void onUpdate(float ts); }; } // namespace engine #endif