aboutsummaryrefslogtreecommitdiff
path: root/src/physac.h
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-01-20 19:09:48 +0100
committerraysan5 <raysan5@gmail.com>2016-01-20 19:09:48 +0100
commitc5663ca015e550ab8e2a43c10fa72db0aab7cac8 (patch)
tree17b31aadd4694efd35240dc0b7412109c921c38f /src/physac.h
parent51c0b61a432e424c04b32800c98b064c34b01153 (diff)
downloadraylib-c5663ca015e550ab8e2a43c10fa72db0aab7cac8.tar.gz
raylib-c5663ca015e550ab8e2a43c10fa72db0aab7cac8.zip
Some formatting tweaks
Diffstat (limited to 'src/physac.h')
-rw-r--r--src/physac.h3
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 {