14 lines
316 B
C++
14 lines
316 B
C++
#ifndef GEN7TESTS_BUILDTYPES_HPP
|
|
#define GEN7TESTS_BUILDTYPES_HPP
|
|
#include <CreatureLib/Library/TypeLibrary.hpp>
|
|
#include <cstring>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
|
|
class BuildTypes {
|
|
public:
|
|
static CreatureLib::Library::TypeLibrary* Build(const std::string& path);
|
|
};
|
|
|
|
#endif // GEN7TESTS_BUILDTYPES_HPP
|