mirror of
https://github.com/thegeneralist01/Scene-Manager-DevRepo
synced 2026-01-11 23:50:29 +01:00
Renamed ControlledVehicle object and class to CollectedVehicle
This commit is contained in:
parent
2d85e65b32
commit
c48d1ea8ed
4 changed files with 13 additions and 13 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace SceneManager
|
||||
{
|
||||
public class ControlledVehicle
|
||||
public class CollectedVehicle
|
||||
{
|
||||
public Vehicle Vehicle;
|
||||
public string LicensePlate;
|
||||
|
|
@ -14,7 +14,7 @@ namespace SceneManager
|
|||
public bool StoppedAtWaypoint;
|
||||
public bool Redirected;
|
||||
|
||||
public ControlledVehicle(Vehicle vehicle, string licensePlate, int path, int totalWaypoints, int currentWaypoint, bool tasksAssigned, bool dismissNow, bool redirected)
|
||||
public CollectedVehicle(Vehicle vehicle, string licensePlate, int path, int totalWaypoints, int currentWaypoint, bool tasksAssigned, bool dismissNow, bool redirected)
|
||||
{
|
||||
Vehicle = vehicle;
|
||||
LicensePlate = licensePlate;
|
||||
Loading…
Add table
Add a link
Reference in a new issue