#ifndef SIMPLE_COLLIDER_H #define SIMPLE_COLLIDER_H #include "entity.h" #include class Game; class SimpleColliderComponent : public Component { public: SimpleColliderComponent(std::function callback); void receive(Game& game, Entity& entity, const Message& msg); private: std::function callback; }; #endif