Initial commit.
This commit is contained in:
22
src/Library/Species/SpeciesLibrary.hpp
Normal file
22
src/Library/Species/SpeciesLibrary.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef PKMNLIB_SPECIESLIBRARY_HPP
|
||||
#define PKMNLIB_SPECIESLIBRARY_HPP
|
||||
|
||||
#include <Library/SpeciesLibrary.hpp>
|
||||
#include "PokemonSpecies.hpp"
|
||||
|
||||
namespace PkmnLib::Library {
|
||||
class SpeciesLibrary : public CreatureLib::Library::SpeciesLibrary {
|
||||
public:
|
||||
inline const PokemonSpecies* GetPkmnSpecies(const std::string& name) const {
|
||||
return reinterpret_cast<const PokemonSpecies*>(CreatureLib::Library::SpeciesLibrary::GetSpecies(name));
|
||||
}
|
||||
|
||||
const PokemonSpecies* operator[](const std::string& name) const { return GetPkmnSpecies(name); }
|
||||
|
||||
void LoadSpecies(const std::string& name, const PokemonSpecies* species){
|
||||
CreatureLib::Library::SpeciesLibrary::LoadSpecies(name, species);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
#endif // PKMNLIB_SPECIESLIBRARY_HPP
|
||||
Reference in New Issue
Block a user