diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-14 14:32:25 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-14 14:32:25 +0000 |
commit | 169068b417323232cc6aac440f3d7a2d918b5917 (patch) | |
tree | 6a97eba1b3027feaa8e5530f7df625c0430a61b1 /game/vehicles/vehicle.cpp | |
parent | Add our first vehicle (diff) | |
download | ilt-169068b417323232cc6aac440f3d7a2d918b5917.tar.bz2 ilt-169068b417323232cc6aac440f3d7a2d918b5917.tar.xz ilt-169068b417323232cc6aac440f3d7a2d918b5917.zip |
Code tidy-up
Diffstat (limited to 'game/vehicles/vehicle.cpp')
-rw-r--r-- | game/vehicles/vehicle.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/game/vehicles/vehicle.cpp b/game/vehicles/vehicle.cpp index 4c4ac71..c12181f 100644 --- a/game/vehicles/vehicle.cpp +++ b/game/vehicles/vehicle.cpp @@ -1,6 +1,10 @@ #include "vehicle.h" +#include "game/network/link.h" +#include <array> +#include <memory> +#include <utility> -Vehicle::Vehicle(LinkPtr l, const std::string & obj, const std::string & tex) : +Vehicle::Vehicle(const LinkPtr & l, const std::string & obj, const std::string & tex) : Physical(l->ends.front().first->pos, obj, tex), link(l) { } |