CreatureLib/src/Library/Attacks/AttackTarget.hpp

17 lines
385 B
C++

#ifndef CREATURELIB_ATTACKTARGET_HPP
#define CREATURELIB_ATTACKTARGET_HPP
#include <Arbutils/Enum.hpp>
namespace CreatureLib::Library {
ENUM(AttackTarget, u8, Adjacent, AdjacentAlly, AdjacentAllySelf, AdjacentOpponent,
All, AllAdjacent, AllAdjacentOpponent, AllAlly, AllOpponent,
Any,
RandomOpponent, Self)
}
#endif // CREATURELIB_ATTACKTARGET_HPP