mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-06 09:39:49 +00:00
Useful when need to find tiles with high number of updates. Add debug Lua package with new functions to toggle render mode and set navmesh render mode.
14 lines
237 B
C++
14 lines
237 B
C++
#ifndef OPENMW_MWLUA_DEBUGBINDINGS_H
|
|
#define OPENMW_MWLUA_DEBUGBINDINGS_H
|
|
|
|
#include <sol/sol.hpp>
|
|
|
|
namespace MWLua
|
|
{
|
|
struct Context;
|
|
|
|
sol::table initDebugPackage(const Context& context);
|
|
}
|
|
|
|
#endif // OPENMW_MWLUA_DEBUGBINDINGS_H
|