diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/ponderable.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/ponderable.h b/src/components/ponderable.h index 221d267..cc42048 100644 --- a/src/components/ponderable.h +++ b/src/components/ponderable.h | |||
@@ -56,6 +56,11 @@ public: | |||
56 | vec2d accel = { 0.0, 0.0 }; | 56 | vec2d accel = { 0.0, 0.0 }; |
57 | 57 | ||
58 | /** | 58 | /** |
59 | * The target velocity of the body. | ||
60 | */ | ||
61 | vec2d targetVel = { 0.0, 0.0 }; | ||
62 | |||
63 | /** | ||
59 | * The type of physical body that the entity is meant to assume. The body will | 64 | * The type of physical body that the entity is meant to assume. The body will |
60 | * be acted upon differently based on this. See the enumeration above for more | 65 | * be acted upon differently based on this. See the enumeration above for more |
61 | * details. | 66 | * details. |