mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5332059738
* init commit * review changes * removed Land_vn_building_base import * case sensitive includes * changed to use script_component.hpp * config style * config style * config style * config style * revert to define * defines.hpp * defines.hpp Co-authored-by: commy2 <commy-2@gmx.de>
27 lines
888 B
C++
27 lines
888 B
C++
|
|
// fuel pumps
|
|
class Land_vn_commercial_base;
|
|
class Land_vn_fuelstation_01_pump_f: Land_vn_commercial_base {
|
|
transportFuel = 0;
|
|
EGVAR(refuel,hooks)[] = {{0, 0.4, -0.5}, {0, -0.4, -0.5}};
|
|
EGVAR(refuel,fuelCargo) = REFUEL_INFINITE_FUEL;
|
|
};
|
|
class Land_vn_fuelstation_02_pump_f: Land_vn_commercial_base {
|
|
transportFuel = 0;
|
|
EGVAR(refuel,hooks)[] = {{0, 0.4, -0.5}, {0, -0.4, -0.5}};
|
|
EGVAR(refuel,fuelCargo) = REFUEL_INFINITE_FUEL;
|
|
};
|
|
class Land_vn_fuelstation_feed_f: Land_vn_commercial_base {
|
|
transportFuel = 0;
|
|
EGVAR(refuel,hooks)[] = {{0, 0.4, -0.5}, {0, -0.4, -0.5}};
|
|
EGVAR(refuel,fuelCargo) = REFUEL_INFINITE_FUEL;
|
|
};
|
|
|
|
// fuel objects
|
|
class Land_vn_building_b_base;
|
|
class Land_vn_usaf_fueltank_75_01: Land_vn_building_b_base {
|
|
transportFuel = 0;
|
|
EGVAR(refuel,hooks)[] = {{0, -0.4, -0.5}};
|
|
EGVAR(refuel,fuelCargo) = 2840; // 750 * 3.785
|
|
};
|