diff options
Diffstat (limited to 'src/entity.c')
-rw-r--r-- | src/entity.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/entity.c b/src/entity.c index 8225e76..164d9f4 100644 --- a/src/entity.c +++ b/src/entity.c @@ -75,6 +75,9 @@ void updateEntity(Entity* entity, Game* game) break; case POND: DrawBoundingBox(entity->box, YELLOW); + DrawPlane( + Vector3Add(entity->position, (Vector3){0.0, POND_HEIGHT / 2.0, 0.0}), + (Vector2){POND_SIZE * 2.5, POND_SIZE * 2.5}, BLUE); break; default: break; |