Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_FuelNozzleHolderComponent.c
Go to the documentation of this file.
1[ComponentEditorProps(category: "GameScripted", description: "THIS IS THE SCRIPT DESCRIPTION.", icon: HYBRID_COMPONENT_ICON)]
5
7{
8 private SCR_Nozzle m_Nozzle = null;
9
10 //------------------------------------------------------------------------------------------------
13 void StoreNozzle( SCR_Nozzle Nozzle )
14 {
15 m_Nozzle = Nozzle;
16 }
17
18 //------------------------------------------------------------------------------------------------
22 bool NozzleStored( SCR_Nozzle Nozzle )
23 {
24 if( !Nozzle )
25 return false;
26 else
27 return true;
28 }
29
30 //------------------------------------------------------------------------------------------------
33 {
34 m_Nozzle = null;
35 }
36
37 //------------------------------------------------------------------------------------------------
40 {
41 return m_Nozzle;
42 }
43
44 //------------------------------------------------------------------------------------------------
45 // constructor
52}
enum EAIGroupCombatMode ComponentEditorProps(category:"GameScripted/AI", description:"Component for utility AI system for groups")
SCR_FuelNozzleHolderComponentClass m_Nozzle
bool NozzleStored(SCR_Nozzle Nozzle)
SCR_Nozzle GetNozzle()
void SCR_FuelNozzleHolderComponent(IEntityComponentSource src, IEntity ent, IEntity parent)
void StoreNozzle(SCR_Nozzle Nozzle)
HYBRID_COMPONENT_ICON
Default icon for all components written in script that don't inherit ScriptComponent.