diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-15 16:02:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-15 16:02:49 +0300 |
commit | 97899e857e2ebe6bf038b8fdfed81fb489d0d0cb (patch) | |
tree | 1cd4b5ebfcd6f422f524821381a19ca7d6ff0e69 /src/net/net.cpp | |
parent | 32a344ef8f062c5fd5ec84321b4975ceba1e377d (diff) | |
download | plus-97899e857e2ebe6bf038b8fdfed81fb489d0d0cb.tar.gz plus-97899e857e2ebe6bf038b8fdfed81fb489d0d0cb.tar.bz2 plus-97899e857e2ebe6bf038b8fdfed81fb489d0d0cb.tar.xz plus-97899e857e2ebe6bf038b8fdfed81fb489d0d0cb.zip |
Add empty cashshophandler.
Diffstat (limited to 'src/net/net.cpp')
-rw-r--r-- | src/net/net.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/net.cpp b/src/net/net.cpp index 79c1bffdd..4ef6c6ea6 100644 --- a/src/net/net.cpp +++ b/src/net/net.cpp @@ -55,6 +55,7 @@ Net::BuySellHandler *buySellHandler = nullptr; Net::ServerFeatures *serverFeatures = nullptr; Net::MailHandler *mailHandler = nullptr; Net::AuctionHandler *auctionHandler = nullptr; +Net::CashShopHandler *cashShopHandler = nullptr; Net::AdminHandler *Net::getAdminHandler() { @@ -151,6 +152,11 @@ Net::AuctionHandler *Net::getAuctionHandler() return auctionHandler; } +Net::CashShopHandler *Net::getCashShopHandler() +{ + return cashShopHandler; +} + namespace Net { ServerInfo::Type networkType = ServerInfo::UNKNOWN; |