cOMS/models/mob/skill/StatsTarget.h
Dennis Eichhorn 39fbcf4300
Some checks are pending
CodeQL / Analyze (${{ matrix.language }}) (autobuild, c-cpp) (push) Waiting to run
Microsoft C++ Code Analysis / Analyze (push) Waiting to run
linux bug fixes
2025-03-22 01:10:19 +00:00

18 lines
319 B
C
Executable File

#ifndef COMS_MODELS_SKILL_STATS_TARGET_H
#define COMS_MODELS_SKILL_STATS_TARGET_H
enum StatsTarget {
STATS_TARGET_NONE,
STATS_TARGET_SELF,
STATS_TARGET_ENEMY,
STATS_TARGET_ENEMY_AOE,
STATS_TARGET_ENEMY_AURA,
STATS_TARGET_ALLY,
STATS_TARGET_ALLY_AOE,
STATS_TARGET_ALLY_AURA
};
#endif