summary refs log tree commit diff stats
path: root/src/systems/pondering.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems/pondering.h')
-rw-r--r--src/systems/pondering.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/systems/pondering.h b/src/systems/pondering.h index d70525b..7e342df 100644 --- a/src/systems/pondering.h +++ b/src/systems/pondering.h
@@ -14,7 +14,14 @@ public:
14 14
15 void tick(double dt); 15 void tick(double dt);
16 16
17 void initializeBody(id_type entity, PonderableComponent::Type type); 17 void initializeBody(
18 id_type entity,
19 PonderableComponent::BodyType bodyType,
20 PonderableComponent::ColliderType colliderType);
21
22private:
23
24 void processBodyCollision(id_type body, id_type collider);
18 25
19}; 26};
20 27