From bfca89de4edded82668376d2388784defbee071b Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Sun, 22 Aug 2010 12:44:56 +0200 Subject: Rename some stuff to conform to naming conventions --- src/scripting/luascript.hpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/scripting/luascript.hpp') diff --git a/src/scripting/luascript.hpp b/src/scripting/luascript.hpp index 94851ac..5e4deea 100644 --- a/src/scripting/luascript.hpp +++ b/src/scripting/luascript.hpp @@ -63,18 +63,17 @@ class LuaScript: public Script static void getPostCallback(Character *, const std::string &, const std::string &, void *); - void processDeathEvent(Being* thing); + void processDeathEvent(Being *thing); - void processRemoveEvent(Thing* thing); + void processRemoveEvent(Thing *thing); /** * Loads the global event script file */ - static bool load_global_event_script(const std::string &file); - static bool load_special_actions_script(const std::string &file); + static bool loadGlobalEventScript(const std::string &file); + static bool loadSpecialActionsScript(const std::string &file); private: - lua_State *mState; int nbArgs; std::string mCurFunction; -- cgit