diff options
Diffstat (limited to 'src/game/game.cpp')
| -rw-r--r-- | src/game/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/game.cpp b/src/game/game.cpp index 2632b64b..cb00ae0e 100644 --- a/src/game/game.cpp +++ b/src/game/game.cpp @@ -40,7 +40,7 @@ void move_point(vec2 *inout_pos, vec2 *inout_vel, float elasticity, int *bounces } } -static bool test_box(vec2 pos, vec2 size) +bool test_box(vec2 pos, vec2 size) { size *= 0.5f; if(col_check_point(pos.x-size.x, pos.y-size.y)) |