diff options
| author | Erik Schilling <ablu.erikschilling@googlemail.com> | 2013-04-10 23:04:42 +0200 |
|---|---|---|
| committer | Erik Schilling <ablu.erikschilling@googlemail.com> | 2013-04-11 13:47:17 +0200 |
| commit | d7fa7ea64f6bb0bc0b097e4bf1ceb4bd9620d0da (patch) | |
| tree | 1b4d200ba66c6afcdb7763951980476756339cf1 /src/scripting/luascript.h | |
| parent | aa04597c5f8bb806996d604699fc8ebff6d53bdd (diff) | |
| download | manaserv-d7fa7ea64f6bb0bc0b097e4bf1ceb4bd9620d0da.tar.gz manaserv-d7fa7ea64f6bb0bc0b097e4bf1ceb4bd9620d0da.tar.xz manaserv-d7fa7ea64f6bb0bc0b097e4bf1ceb4bd9620d0da.zip | |
Converted Being into a Component
I did not really care too much about staying consistent with the use of
static_casts to Actors since they are only temporary anyway until Actor
is a component too.
Diffstat (limited to 'src/scripting/luascript.h')
| -rw-r--r-- | src/scripting/luascript.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scripting/luascript.h b/src/scripting/luascript.h index b7bdde1..b874976 100644 --- a/src/scripting/luascript.h +++ b/src/scripting/luascript.h @@ -69,16 +69,16 @@ class LuaScript : public Script void unref(Ref &ref); - static void getQuestCallback(Being *, + static void getQuestCallback(Entity *, const std::string &value, Script *); - static void getPostCallback(Being *, + 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); |
