diff options
| author | raysan5 <raysan5@gmail.com> | 2016-01-20 19:09:48 +0100 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-01-20 19:09:48 +0100 |
| commit | c5663ca015e550ab8e2a43c10fa72db0aab7cac8 (patch) | |
| tree | 17b31aadd4694efd35240dc0b7412109c921c38f /src/physac.h | |
| parent | 51c0b61a432e424c04b32800c98b064c34b01153 (diff) | |
| download | raylib-c5663ca015e550ab8e2a43c10fa72db0aab7cac8.tar.gz raylib-c5663ca015e550ab8e2a43c10fa72db0aab7cac8.zip | |
Some formatting tweaks
Diffstat (limited to 'src/physac.h')
| -rw-r--r-- | src/physac.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/physac.h b/src/physac.h index 558673ef..a1501ee3 100644 --- a/src/physac.h +++ b/src/physac.h @@ -32,7 +32,8 @@ //---------------------------------------------------------------------------------- // Types and Structures Definition //---------------------------------------------------------------------------------- -typedef enum { RectangleCollider, CircleCollider } ColliderType; +// Collider types +typedef enum { COLLIDER_CIRCLE, COLLIDER_RECTANGLE, COLLIDER_CAPSULE } ColliderType; // Physics struct typedef struct Physics { |
