Implements system for saving Evolutions.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
23
src/Library/Evolutions/EvolutionMethod.hpp
Normal file
23
src/Library/Evolutions/EvolutionMethod.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef PKMNLIB_EVOLUTIONMETHOD_HPP
|
||||
#define PKMNLIB_EVOLUTIONMETHOD_HPP
|
||||
|
||||
#include <cstdint>
|
||||
namespace PkmnLib::Library{
|
||||
enum class EvolutionMethod : uint8_t{
|
||||
Level,
|
||||
HighFriendship,
|
||||
KnownMove,
|
||||
LocationBased,
|
||||
TimeBased,
|
||||
HoldsItem,
|
||||
IsGenderAndLevel,
|
||||
EvolutionItemUse,
|
||||
EvolutionItemUseWithGender,
|
||||
Trade,
|
||||
TradeWithHeldItem,
|
||||
TradeWithSpecificPokemon,
|
||||
Custom
|
||||
};
|
||||
}
|
||||
|
||||
#endif // PKMNLIB_EVOLUTIONMETHOD_HPP
|
||||
Reference in New Issue
Block a user