Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
cacontinuousbase.c
Go to the documentation of this file.
2{
3 override bool IsContinuousAction() //informs command callback whether action is looped or oneshot
4 {
5 return true;
6 }
7
8 void OnCompletePogress(ActionData action_data)
9 {
10 ActionContinuousBase action = ActionContinuousBase.Cast(action_data.m_Action);
11 if(action)
12 action.OnFinishProgress(action_data);
13 }
14};
Definition cabase.c:2