mirror of
https://github.com/diasurgical/DevilutionX.git
synced 2026-05-21 05:40:35 +00:00
8bffbedcb4
Introduces a new `devilutionx.dev` Lua module, automatically loaded in the console prelude. Arguments and basic help are shown in autocompletion.
11 lines
176 B
C++
11 lines
176 B
C++
#pragma once
|
|
#ifdef _DEBUG
|
|
#include <sol/sol.hpp>
|
|
|
|
namespace devilution {
|
|
|
|
sol::table LuaDevModule(sol::state_view &lua);
|
|
|
|
} // namespace devilution
|
|
#endif // _DEBUG
|