diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-10 14:57:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-10 14:57:39 +0300 |
commit | 3efda43abd11979adfd048fc62fe4f09e702f772 (patch) | |
tree | 80f8d0f65bf7648ae78e12badc11f13b4481b87a /src/net/ea/npchandler.cpp | |
parent | a0c7a0e2d34a13f2c3e86f662e352977ebe2ae73 (diff) | |
download | plus-3efda43abd11979adfd048fc62fe4f09e702f772.tar.gz plus-3efda43abd11979adfd048fc62fe4f09e702f772.tar.bz2 plus-3efda43abd11979adfd048fc62fe4f09e702f772.tar.xz plus-3efda43abd11979adfd048fc62fe4f09e702f772.zip |
improve npchandler class.
Diffstat (limited to 'src/net/ea/npchandler.cpp')
-rw-r--r-- | src/net/ea/npchandler.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/ea/npchandler.cpp b/src/net/ea/npchandler.cpp index 1640d3650..9f8e5b87f 100644 --- a/src/net/ea/npchandler.cpp +++ b/src/net/ea/npchandler.cpp @@ -34,19 +34,19 @@ NpcHandler::NpcHandler() : { } -void NpcHandler::sendLetter(int npcId A_UNUSED, +void NpcHandler::sendLetter(const int npcId A_UNUSED, const std::string &recipient A_UNUSED, - const std::string &text A_UNUSED) + const std::string &text A_UNUSED) const { // TODO } -void NpcHandler::startShopping(int beingId A_UNUSED) +void NpcHandler::startShopping(const int beingId A_UNUSED) const { // TODO } -void NpcHandler::endShopping(int beingId A_UNUSED) +void NpcHandler::endShopping(const int beingId A_UNUSED) const { // TODO } |