You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/apps/esmtool/tes4.hpp

17 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