Initial commit.
This commit is contained in:
18
src/Library/Species/PokemonForme.hpp
Normal file
18
src/Library/Species/PokemonForme.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef PKMNLIB_POKEMONFORME_HPP
|
||||
#define PKMNLIB_POKEMONFORME_HPP
|
||||
|
||||
#include <Library/CreatureData/SpeciesVariant.hpp>
|
||||
|
||||
namespace PkmnLib::Library {
|
||||
class PokemonForme : public CreatureLib::Library::SpeciesVariant {
|
||||
public:
|
||||
PokemonForme(std::string name, float height, float weight, uint32_t baseExperience, std::vector<uint8_t> types,
|
||||
CreatureLib::Core::StatisticSet<uint16_t> baseStats, std::vector<std::string> talents,
|
||||
std::vector<std::string> secretTalents, const CreatureLib::Library::LearnableAttacks* attacks);
|
||||
|
||||
private:
|
||||
public:
|
||||
};
|
||||
}
|
||||
|
||||
#endif // PKMNLIB_POKEMONFORME_HPP
|
||||
Reference in New Issue
Block a user