summaryrefslogtreecommitdiff
path: root/game/vehicles/vehicle.cpp
blob: c12181fe9b106e405cde95e3338072f53a155249 (plain)
1
2
3
4
5
6
7
8
9
10
#include "vehicle.h"
#include "game/network/link.h"
#include <array>
#include <memory>
#include <utility>

Vehicle::Vehicle(const LinkPtr & l, const std::string & obj, const std::string & tex) :
	Physical(l->ends.front().first->pos, obj, tex), link(l)
{
}