mirror of
https://github.com/opentibiabr/remeres-map-editor
synced 2026-08-15 18:26:04 -04:00
17 lines
326 B
C
17 lines
326 B
C
|
|
//////////////////////////////////////////////////////////////////////
|
||
|
|
// This file is part of Remere's Map Editor
|
||
|
|
//////////////////////////////////////////////////////////////////////
|
||
|
|
|
||
|
|
#ifndef LUA_API_JSON_H
|
||
|
|
#define LUA_API_JSON_H
|
||
|
|
|
||
|
|
#include <sol/sol.hpp>
|
||
|
|
|
||
|
|
namespace LuaAPI {
|
||
|
|
|
||
|
|
void registerJson(sol::state &lua);
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|