1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Move AreaStore to util

This commit is contained in:
ShadowNinja 2015-10-29 23:26:03 -04:00
parent f021db7243
commit 0079887b64
9 changed files with 14 additions and 16 deletions

View file

@ -23,7 +23,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "common/c_converter.h"
#include "cpp_api/s_security.h"
#include "irr_v3d.h"
#include "areastore.h"
#include "util/areastore.h"
#include "filesys.h"
#ifndef ANDROID
#include "cmake_config.h"

View file

@ -17,15 +17,14 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef L_AREASTORE_H_
#define L_AREASTORE_H_
#ifndef L_AREA_STORE_H_
#define L_AREA_STORE_H_
#include "lua_api/l_base.h"
#include "areastore.h"
/*
AreaStore
*/
class AreaStore;
class LuaAreaStore : public ModApiBase {
private:
@ -66,4 +65,4 @@ public:
static void Register(lua_State *L);
};
#endif /* L_AREASTORE_H_ */
#endif // L_AREA_STORE_H_

View file

@ -25,7 +25,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "serialization.h"
#include "json/json.h"
#include "cpp_api/s_security.h"
#include "areastore.h"
#include "porting.h"
#include "debug.h"
#include "log.h"