diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-08-12 19:43:51 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-08-12 20:07:04 -0600 |
commit | 2293b1c5ef0bb7378140bf73f1fef03a4504bdd2 (patch) | |
tree | b3df7512fd0e48e8b1b3a0ed3cbd6d5e9d149ad2 /src/net/npchandler.h | |
parent | 71595e5db41f503f06401c59090748b46e9731f0 (diff) | |
download | mana-2293b1c5ef0bb7378140bf73f1fef03a4504bdd2.tar.gz mana-2293b1c5ef0bb7378140bf73f1fef03a4504bdd2.tar.bz2 mana-2293b1c5ef0bb7378140bf73f1fef03a4504bdd2.tar.xz mana-2293b1c5ef0bb7378140bf73f1fef03a4504bdd2.zip |
Replace most of Net::NpcHandler with events
Reviewed-by: Chuck Miller
Diffstat (limited to 'src/net/npchandler.h')
-rw-r--r-- | src/net/npchandler.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/net/npchandler.h b/src/net/npchandler.h index 2a9cfab5..fb8ab7ec 100644 --- a/src/net/npchandler.h +++ b/src/net/npchandler.h @@ -31,21 +31,6 @@ class NpcHandler public: virtual ~NpcHandler() {} - virtual void talk(int npcId) = 0; - - virtual void nextDialog(int npcId) = 0; - - virtual void closeDialog(int npcId) = 0; - - virtual void listInput(int npcId, int value) = 0; - - virtual void integerInput(int npcId, int value) = 0; - - virtual void stringInput(int npcId, const std::string &value) = 0; - - virtual void sendLetter(int npcId, const std::string &recipient, - const std::string &text) = 0; - virtual void startShopping(int beingId) = 0; virtual void buy(int beingId) = 0; |