Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
FuelManagerComponent.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
15
16class FuelManagerComponent: GameComponent
17{
18 proto external int GetFuelNodesList(out notnull array<BaseFuelNode> outNodes);
20 proto external bool HasFuel();
22 proto external bool CanBeRefueled();
24 proto external float GetTotalFuel();
26 proto external float GetTotalMaxFuel();
27
28 // callbacks
29
30 event void OnInit(IEntity owner);
31}
32
proto external float GetTotalMaxFuel()
Get the current sum of the max amount of fuel in all nodes.
FuelManagerComponentClass GameComponentClass GetFuelNodesList(out notnull array< BaseFuelNode > outNodes)
proto external float GetTotalFuel()
Get the current sum of amount of fuel in all nodes.
proto external bool CanBeRefueled()
Returns true if at least one node can be refueled.
proto external bool HasFuel()
Returns true if one node has at least some fuel.