summaryrefslogtreecommitdiff
path: root/battles/include
diff options
context:
space:
mode:
Diffstat (limited to 'battles/include')
-rw-r--r--battles/include/kurator/battles/components.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/battles/include/kurator/battles/components.h b/battles/include/kurator/battles/components.h
index 8f5813b..d4363c4 100644
--- a/battles/include/kurator/battles/components.h
+++ b/battles/include/kurator/battles/components.h
@@ -34,7 +34,11 @@ struct AIState
struct FloatingMovement
{
- double speed; // linear and instant angular for now
+ double max_speed;
+ double acceleration;
+ double deceleration;
+ double destination_boundary;
+ Point speed = {0.0, 0.0};
};