Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
en5c_bear_colorbase.c
Go to the documentation of this file.
1 class Bear_ColorBase extends Container_Base
2 {
3  override bool IsContainer()
4  {
5  return true;
6  }
7 
8  override bool CanPutInCargo( EntityAI parent )
9  {
10  if( !super.CanPutInCargo(parent) ) {return false;}
11  //better use something like super.GetName()
12  if ( parent && (parent.IsKindOf("Bear_ColorBase")) )
13  {
14  return false;
15  }
16 
17  return true;
18  }
19 }
20 
21 class Bear_Beige : Bear_ColorBase
22 {
23 }
24 
25 class Bear_Dark : Bear_ColorBase
26 {
27 }
28 
29 class Bear_Pink : Bear_ColorBase
30 {
31 }
32 
33 class Bear_White : Bear_ColorBase
34 {
35 }
CanPutInCargo
override bool CanPutInCargo(EntityAI parent)
Definition: explosivesbase.c:247
Container_Base
Definition: anniversarybox.c:1
EntityAI
Definition: building.c:5