mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
478 B
C++
16 lines
478 B
C++
|
class ACE_Medical_Injuries {
|
||
|
class damageTypes {
|
||
|
class woundHandlers;
|
||
|
|
||
|
class explosive {
|
||
|
class woundHandlers: woundHandlers {};
|
||
|
};
|
||
|
class GVAR(explosive_incendiary): explosive {
|
||
|
class woundHandlers: woundHandlers {
|
||
|
// TODO use function name after bug with the woundHandlers config caching is fixed
|
||
|
ADDON = QUOTE({call FUNC(woundsHandlerIncendiary)});
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|