11 lines
433 B
C++
11 lines
433 B
C++
#include "../../src/Library/Species/SpeciesLibrary.hpp"
|
|
#include "../Core.hpp"
|
|
using namespace PkmnLib::Library;
|
|
|
|
export const PokemonSpecies* PkmnLib_SpeciesLibrary_FindPreEvolution(const SpeciesLibrary* p,
|
|
const PokemonSpecies* species) {
|
|
auto v = p->FindPreEvolution(species);
|
|
if (!v.has_value())
|
|
return nullptr;
|
|
return v.value().GetRaw();
|
|
} |