CreatureLib/src/Library/CreatureData/CreatureMoves.hpp

33 lines
808 B
C++

#ifndef CREATURELIB_CREATUREMOVES_HPP
#define CREATURELIB_CREATUREMOVES_HPP
#include <cstdint>
#include <string>
#include <vector>
namespace CreatureLib::Library{
class LevelMove{
private:
uint8_t _level;
std::string _name;
public:
LevelMove(uint8_t level, std::string name);
[[nodiscard]] inline uint8_t GetLevel() const;
[[nodiscard]] inline std::string GetName() const;
};
class CreatureMoves {
private:
std::vector<LevelMove> _levelMoves;
std::vector<std::string> _eggMoves;
std::vector<std::string> _machineMoves;
std::vector<std::string> _tutorMoves;
std::vector<std::string> _variantDependentMoves;
public:
//TODO: Public API funcs
};
}
#endif //CREATURELIB_CREATUREMOVES_HPP