mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
15 lines
358 B
C++
15 lines
358 B
C++
|
#ifndef COMPONENTS_LUA_OMWSCRIPTSPARSER_H
|
||
|
#define COMPONENTS_LUA_OMWSCRIPTSPARSER_H
|
||
|
|
||
|
#include <components/vfs/manager.hpp>
|
||
|
|
||
|
namespace LuaUtil
|
||
|
{
|
||
|
|
||
|
// Parses list of `*.omwscripts` files.
|
||
|
std::vector<std::string> parseOMWScriptsFiles(const VFS::Manager* vfs, const std::vector<std::string>& scriptLists);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // COMPONENTS_LUA_OMWSCRIPTSPARSER_H
|