PkmnLibTools/src/Tools/ScriptCompiler.hpp

11 lines
256 B
C++

#ifndef PKMNLIBTOOLS_SCRIPTCOMPILER_HPP
#define PKMNLIBTOOLS_SCRIPTCOMPILER_HPP
#include <string>
class ScriptCompiler {
public:
static void Compile(const std::string& inPath, const std::string& outPath);
};
#endif // PKMNLIBTOOLS_SCRIPTCOMPILER_HPP