mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
33 lines
793 B
C++
33 lines
793 B
C++
class JetSkiYanahui_Case;
|
|
|
|
class JetSkiYanahui_Case_Yellow : JetSkiYanahui_Case {
|
|
displayName = $STR_VEH_NAME_JETSKI_YELLOW;
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
};
|
|
|
|
class JetSkiYanahui_Case_Green : JetSkiYanahui_Case {
|
|
displayName = $STR_VEH_NAME_JETSKI_GREEN;
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
};
|
|
|
|
class JetSkiYanahui_Case_Blue : JetSkiYanahui_Case {
|
|
displayName = $STR_VEH_NAME_JETSKI_BLUE;
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
};
|
|
|
|
class JetSkiYanahui_Case_Red : JetSkiYanahui_Case {
|
|
displayName = $STR_VEH_NAME_JETSKI_RED;
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
}; |