12 lines
351 B
C++
12 lines
351 B
C++
#ifndef GEN7TESTS_BUILDMOVES_HPP
|
|
#define GEN7TESTS_BUILDMOVES_HPP
|
|
|
|
#include <CreatureLib/Library/TypeLibrary.hpp>
|
|
#include <PkmnLib/Library/Moves/MoveLibrary.hpp>
|
|
class BuildMoves {
|
|
public:
|
|
static PkmnLib::Library::MoveLibrary* Build(const std::string& path, const CreatureLib::Library::TypeLibrary* types);
|
|
};
|
|
|
|
#endif // GEN7TESTS_BUILDMOVES_HPP
|