diff options
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) { } |