Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
areadamageregularraycasted.c
Go to the documentation of this file.
1 // DEPRECATED: Left for backwards compatibility with mods
2 class AreaDamageRegularRaycasted extends AreaDamageBase
3 {
4  void AreaDamageRegularRaycasted(EntityAI parent)
5  {
6 
7  }
8 
9  void ~AreaDamageRegularRaycasted() {}
10 
11  override void SetLoopInterval(float time)
12  {
13  m_LoopInterval = time;
14  }
15 
16  override void SetRaycastSources( array<string> raycast_sources )
17  {
18  m_RaycastSources = raycast_sources;
19  }
20 
21  override void OnEnterServer(Object object)
22  {
23  super.OnEnterServer(object);
24 
25  EvaluateDamage_Loop(object);
26  }
27 }
SetLoopInterval
void SetLoopInterval(float time)
Definition: areadamagemanager.c:331
SetRaycastSources
void SetRaycastSources(array< string > raycast_sources)
Definition: areadamagemanager.c:350
Object
Definition: objecttyped.c:1
array< string >
AreaDamageBase
Definition: areadamage.c:3
EntityAI
Definition: building.c:5