Add vehicle spawn points

(cherry picked from commit 9aed85ed37)
This commit is contained in:
nsubiron 2018-10-23 18:16:27 +02:00
parent 7e9656ede3
commit 3af14283f8
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
// de Barcelona (UAB).
//
// This work is licensed under the terms of the MIT license.
// For a copy, see <https://opensource.org/licenses/MIT>.
#pragma once
#include "Engine/TargetPoint.h"
#include "VehicleSpawnPoint.generated.h"
/// Base class for spawner locations for walkers.
UCLASS()
class CARLA_API AVehicleSpawnPoint : public ATargetPoint
{
GENERATED_BODY()
};