diff options
Diffstat (limited to 'source/game/StarProjectile.cpp')
-rw-r--r-- | source/game/StarProjectile.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/game/StarProjectile.cpp b/source/game/StarProjectile.cpp index b3f5184..1503f4c 100644 --- a/source/game/StarProjectile.cpp +++ b/source/game/StarProjectile.cpp @@ -137,6 +137,10 @@ RectF Projectile::metaBoundBox() const { return m_config->boundBox; } +Vec2F Projectile::velocity() const { + return m_movementController->velocity(); +} + pair<ByteArray, uint64_t> Projectile::writeNetState(uint64_t fromVersion) { return m_netGroup.writeNetState(fromVersion); } |