Skip to content

Commit

Permalink
style: todo messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadecraft committed Apr 2, 2024
1 parent e862bfc commit d18e6ff
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/worldobjects/player.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ class Player : public WorldObject {
locy += vely;
// Check collision and update
onGround = false;
// todo: refactor
// todo: only check with types enabling collision
// todo: when hitting multiple?
// TODO: refactor
// TODO: only check with types enabling collision
// TODO: polygonal collisions
// TODO: when hitting multiple?
// TODO: impart velocity on collisions (ex. moving platforms)
for (WorldObject* object : objects) {
if (object == this) continue;
Expand Down

0 comments on commit d18e6ff

Please sign in to comment.