Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
ActionsPerformerComponent.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 ActionsPerformerComponent: GameComponent
17 {
18  proto external void StartAction(BaseUserAction action);
19  proto external void PerformAction(BaseUserAction action);
20  proto external void PerformContinuousAction(BaseUserAction action, float timeSlice);
21  proto external void CancelAction(BaseUserAction action);
22 }
23 
CancelAction
proto external void CancelAction(BaseUserAction action)
GameComponentClass
Definition: GameComponentClass.c:7
StartAction
ActionsPerformerComponentClass GameComponentClass StartAction(BaseUserAction action)
PerformContinuousAction
proto external void PerformContinuousAction(BaseUserAction action, float timeSlice)
BaseUserAction
Definition: BaseUserAction.c:12
PerformAction
proto external void PerformAction(BaseUserAction action)
ActionsPerformerComponentClass
Definition: ActionsPerformerComponent.c:12
GameComponent
Definition: GameComponent.c:12