diff options
| author | raysan5 <[email protected]> | 2016-01-20 19:23:58 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2016-01-20 19:23:58 +0100 |
| commit | cf6c6fefd76135df0247339c9adc2712da6c2691 (patch) | |
| tree | 751d2c7303dc92780b027b122f26b09a4930e88b /src/physac.h | |
| parent | c5663ca015e550ab8e2a43c10fa72db0aab7cac8 (diff) | |
| download | raylib-cf6c6fefd76135df0247339c9adc2712da6c2691.tar.gz raylib-cf6c6fefd76135df0247339c9adc2712da6c2691.zip | |
Review some function names for consistency with raymath
Diffstat (limited to 'src/physac.h')
| -rw-r--r-- | src/physac.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/physac.h b/src/physac.h index a1501ee3..12209987 100644 --- a/src/physac.h +++ b/src/physac.h @@ -66,8 +66,8 @@ typedef struct Rigidbody { typedef struct Collider { bool enabled; ColliderType type; - Rectangle bounds; // Just used for RectangleCollider type - int radius; // Just used for CircleCollider type + Rectangle bounds; // Used for COLLIDER_RECTANGLE and COLLIDER_CAPSULE + int radius; // Used for COLLIDER_CIRCLE and COLLIDER_CAPSULE } Collider; #ifdef __cplusplus |
