engine/include/components/custom.h

14 lines
259 B
C
Raw Normal View History

2023-05-25 17:35:32 +00:00
#ifndef ENGINE_INCLUDE_COMPONENTS_CUSTOM_H_
#define ENGINE_INCLUDE_COMPONENTS_CUSTOM_H_
#include <functional>
namespace engine {
struct CustomComponent {
std::function<void(float)> onUpdate; // void onUpdate(float ts);
};
} // namespace engine
#endif