You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
586 B
22 lines
586 B
3 years ago
|
# /*
|
||
|
# * UnitCountBuffsExBJ
|
||
|
# *
|
||
|
# * By actboy168
|
||
|
# *
|
||
|
# */
|
||
|
#
|
||
|
#ifndef INCLUDE_BJ_OPTIMIZATION_UNIT_COUNT_BUFFS_EX_H
|
||
|
#define INCLUDE_BJ_OPTIMIZATION_UNIT_COUNT_BUFFS_EX_H
|
||
|
#
|
||
|
# include <YDTrigger/BJOptimization/detail/Unit/UnitBuffsCheck.h>
|
||
|
#
|
||
|
# define UnitCountBuffsExBJ(polarity, resist, unit, bTLife, bAura) \
|
||
|
UnitCountBuffsEx(unit, \
|
||
|
UNIT_BUFFS_EX_POS_CHECK(polarity), \
|
||
|
UNIT_BUFFS_EX_NEG_CHECK(polarity), \
|
||
|
UNIT_BUFFS_EX_MAG_CHECK(resist), \
|
||
|
UNIT_BUFFS_EX_PHY_CHECK(resist), \
|
||
|
bTLife, bAura, false)
|
||
|
#
|
||
|
#endif
|