Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
BaseSlotComponent.c
Go to the documentation of this file.
1 /*
2 ===========================================
3 Do not modify, this script is generated
4 ===========================================
5 */
6 
13 {
14 }
15 
16 class BaseSlotComponent: GameComponent
17 {
19  proto external EntitySlotInfo GetSlotInfo();
21  proto external IEntity GetAttachedEntity();
22 
23  // callbacks
24 
26  event void OnAttachedEntity(IEntity ent);
28  event void OnDetachedEntity(IEntity ent);
29 }
30 
GameComponentClass
Definition: GameComponentClass.c:7
OnDetachedEntity
event void OnDetachedEntity(IEntity ent)
Runs every time an entity is detached from the slot.
Definition: SCR_WheelSlotInfo.c:22
EntitySlotInfo
Adds ability to attach an object to a slot.
Definition: EntitySlotInfo.c:8
GetAttachedEntity
proto external IEntity GetAttachedEntity()
Returns the current attached entity.
BaseSlotComponentClass
Definition: BaseSlotComponent.c:12
OnAttachedEntity
event void OnAttachedEntity(IEntity ent)
Runs every time an entity is attached to the slot.
Definition: SCR_WheelSlotInfo.c:10
GetSlotInfo
BaseSlotComponentClass GameComponentClass GetSlotInfo()
Returns the current slot info.
GameComponent
Definition: GameComponent.c:12