summary refs log tree commit diff stats
path: root/src/components/simple_collider.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/simple_collider.h')
-rw-r--r--src/components/simple_collider.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/simple_collider.h b/src/components/simple_collider.h new file mode 100644 index 0000000..15d78cf --- /dev/null +++ b/src/components/simple_collider.h
@@ -0,0 +1,18 @@
1#ifndef SIMPLE_COLLIDER_H
2#define SIMPLE_COLLIDER_H
3
4#include "entity.h"
5#include <functional>
6
7class Game;
8
9class SimpleColliderComponent : public Component {
10 public:
11 SimpleColliderComponent(std::function<void (Game& game, Entity& collider)> callback);
12 void receive(Game& game, Entity& entity, const Message& msg);
13
14 private:
15 std::function<void (Game& game, Entity& collider)> callback;
16};
17
18#endif