1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-01 05:45:35 +00:00
openmw/apps/esmtool/tes4.hpp
2022-09-15 14:14:52 +04:00

16 lines
288 B
C++

#ifndef OPENMW_ESMTOOL_TES4_H
#define OPENMW_ESMTOOL_TES4_H
#include <iosfwd>
#include <memory>
#include <boost/filesystem/fstream.hpp>
namespace EsmTool
{
struct Arguments;
int loadTes4(const Arguments& info, std::unique_ptr<boost::filesystem::ifstream>&& stream);
}
#endif