diff options
| author | Philipp Sehmisch <mana@crushnet.org> | 2010-03-24 21:09:16 +0100 |
|---|---|---|
| committer | Philipp Sehmisch <mana@crushnet.org> | 2010-04-11 18:27:21 +0200 |
| commit | 88f8e20871fadc58bc69c5b1fca4b7c4d850fdb2 (patch) | |
| tree | d52e8fc0d91de69cf6a9868c082bf44497c9b6c1 /src/scripting/script.hpp | |
| parent | f3ad48f5ce2b3b584870674e58a7265779b3836b (diff) | |
| download | manaserv-88f8e20871fadc58bc69c5b1fca4b7c4d850fdb2.tar.gz manaserv-88f8e20871fadc58bc69c5b1fca4b7c4d850fdb2.tar.xz manaserv-88f8e20871fadc58bc69c5b1fca4b7c4d850fdb2.zip | |
Implemented global event function call to on_chr_death
Reviewed-by: Jared Adams <Jaxad0127@gmail.com>
Diffstat (limited to 'src/scripting/script.hpp')
| -rw-r--r-- | src/scripting/script.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/scripting/script.hpp b/src/scripting/script.hpp index 74925e8..2c8481d 100644 --- a/src/scripting/script.hpp +++ b/src/scripting/script.hpp @@ -131,6 +131,11 @@ class Script virtual void processRemoveEvent(Thing* thing) = 0; + /** + * Runs a function in the global event script file + */ + static bool execute_global_event_function(const std::string &function, Being *obj); + static Script* global_event_script; // the global event script protected: |
