summaryrefslogtreecommitdiff
path: root/src/scripting/luascript.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2013-04-15 22:15:31 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2013-04-15 22:15:31 +0200
commitc53bc90dbaa876a86f762a3d864b1f920e2b8071 (patch)
tree1a8174f4d1745a4799210db970aa2230df622d34 /src/scripting/luascript.h
parentb89e404f85358f2e3ff87d7731376dbeacdf9778 (diff)
parent81be8dc99ba7558c8915310eed095df43e3bdbf7 (diff)
downloadmanaserv-c53bc90dbaa876a86f762a3d864b1f920e2b8071.tar.gz
manaserv-c53bc90dbaa876a86f762a3d864b1f920e2b8071.tar.bz2
manaserv-c53bc90dbaa876a86f762a3d864b1f920e2b8071.tar.xz
manaserv-c53bc90dbaa876a86f762a3d864b1f920e2b8071.zip
Merge branch 'master' into lpc2012
Conflicts: src/account-server/accounthandler.cpp src/game-server/character.cpp
Diffstat (limited to 'src/scripting/luascript.h')
-rw-r--r--src/scripting/luascript.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/scripting/luascript.h b/src/scripting/luascript.h
index 3bedbc28..b874976a 100644
--- a/src/scripting/luascript.h
+++ b/src/scripting/luascript.h
@@ -28,7 +28,7 @@ extern "C" {
#include "scripting/script.h"
-class Character;
+class CharacterComponent;
/**
* Implementation of the Script class for Lua.
@@ -69,16 +69,16 @@ class LuaScript : public Script
void unref(Ref &ref);
- static void getQuestCallback(Character *,
+ static void getQuestCallback(Entity *,
const std::string &value,
Script *);
- static void getPostCallback(Character *,
+ static void getPostCallback(Entity *,
const std::string &sender,
const std::string &letter,
Script *);
- void processDeathEvent(Being *entity);
+ void processDeathEvent(Entity *entity);
void processRemoveEvent(Entity *entity);