Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
cctbase.c
Go to the documentation of this file.
1class CCTBase
2{
3 bool Can( PlayerBase player, ActionTarget target )
4 {
5 return true;
6 }
7
8 bool CanContinue( PlayerBase player, ActionTarget target )
9 {
10 return Can(player, target);
11 }
12};
class ActionTargets ActionTarget
bool CanContinue(PlayerBase player, ActionTarget target)
Definition cctbase.c:8
bool Can(PlayerBase player, ActionTarget target)
Definition cctbase.c:3