Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
BaseControllerComponent.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 BaseControllerComponent: GameComponent
17 {
19  proto external IEntity GetOwner();
21  proto external bool CanMove();
23  proto external void SetCanMove(bool canMove);
24 
25  // callbacks
26 
27  event bool ValidateCanMove() { return true; };
28 }
29 
BaseControllerComponentClass
Definition: BaseControllerComponent.c:12
GameComponentClass
Definition: GameComponentClass.c:7
SetCanMove
proto external void SetCanMove(bool canMove)
Changes state of movement capacity. Internally verifies if all necessary conditions are met.
GetOwner
IEntity GetOwner()
Owner entity of the fuel tank.
Definition: SCR_FuelNode.c:128
CanMove
proto external bool CanMove()
Returns state of movement capacity.
ValidateCanMove
event bool ValidateCanMove()
Definition: BaseControllerComponent.c:27
GameComponent
Definition: GameComponent.c:12