DayZ 1.26
DayZ Explorer by KGB
Загрузка...
Поиск...
Не найдено
Файл Boat.c

См. исходные тексты.

Структуры данных

class  BoatOwnerState
 
class  BoatMove
 
class  Transport
 Base native class for all motorized wheeled vehicles. Подробнее...
 

Перечисления

enum  BoatSoundCtrl { ENGINE , SPEED , PLAYER }
 Boat's sound controller list. (native, do not change or extend) Подробнее...
 
enum  BoatFluid { FUEL }
 Type of vehicle's fluid. (native, do not change or extend) Подробнее...
 

Перечисления

◆ BoatFluid

Type of vehicle's fluid. (native, do not change or extend)

Элементы перечислений
FUEL 
14{
15 FUEL
16};
@ FUEL
Definition Boat.c:15

◆ BoatSoundCtrl

Boat's sound controller list. (native, do not change or extend)

Элементы перечислений
ENGINE 

indicates if engine is ON

SPEED 

speed of the boat in km/h

PLAYER 

indicates if driver is controlled by player

3{
4 // simulation
5 ENGINE,
6 SPEED,
7
8 // miscellaneous
9 PLAYER
10};
@ SPEED
speed of the boat in km/h
Definition Boat.c:6
@ ENGINE
indicates if engine is ON
Definition Boat.c:5
@ PLAYER
indicates if driver is controlled by player
Definition Boat.c:9