dayzinfectedcfgbase.c 432 B

123456789101112
  1. //-----------------------------------------------------------------------------------------------
  2. // DayZInfectedTypeCreate - main dayz type config
  3. //-----------------------------------------------------------------------------------------------
  4. void DayZInfectedTypeCreate(DayZInfectedType pType)
  5. {
  6. //! register attacks
  7. pType.RegisterAttacks();
  8. //! melee hit components (cached in type)
  9. pType.RegisterHitComponentsForAI();
  10. }