PkmnLib/src/Library/Evolutions/EvolutionMethod.hpp
Deukhoofd 5a082c5995
All checks were successful
continuous-integration/drone/push Build is passing
Style Fixes
2021-07-09 14:36:14 +02:00

11 lines
426 B
C++

#ifndef PKMNLIB_EVOLUTIONMETHOD_HPP
#define PKMNLIB_EVOLUTIONMETHOD_HPP
namespace PkmnLib::Library {
ENUM(EvolutionMethod, uint8_t, Level, HighFriendship, HighFriendshipTime, KnownMove, LocationBased, TimeBased,
HoldsItem, HoldsItemTime, IsGenderAndLevel, EvolutionItemUse, EvolutionItemUseWithGender, Trade,
TradeWithHeldItem, TradeWithSpecificPokemon, Custom)
}
#endif // PKMNLIB_EVOLUTIONMETHOD_HPP