umn-drone / project / libs / transit / src / HubFactory.cc
HubFactory.cc
Raw
#include "HubFactory.h"

Hub* HubFactory::CreateEntity(Vector3 pos_) {
    // std::cout << "Hub Created at (" << pos_[0] << ", " << pos_[1] << ", " << pos_[2] << ")" << std::endl;
    return new Hub(pos_);
}