add missing ferry vehicle desc

This commit is contained in:
aap
2021-01-26 19:24:12 +01:00
parent 0862c79b21
commit 70c1f0640d
3 changed files with 44 additions and 1 deletions

13
src/vehicles/Ferry.h Normal file
View File

@ -0,0 +1,13 @@
#pragma once
#include "Vehicle.h"
#include "Door.h"
enum eFerryNodes
{
FERRY_DOOR_FRONT = 1,
FERRY_RAMP_FRONT,
FERRY_DOOR_BACK,
FERRY_RAMP_BACK,
NUM_FERRY_NODES
};