summaryrefslogtreecommitdiff
path: root/src/net/tmwa/roulettehandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-18 19:09:02 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-18 19:09:02 +0300
commit789277e423144102b2b28788e1bb8c7672b06a79 (patch)
tree3488e37e2b3f21c7735a81bf5bff1910d2b4a0b5 /src/net/tmwa/roulettehandler.cpp
parent5f8e616fee9bbf1634ac9e8deb86770c074ce887 (diff)
downloadplus-789277e423144102b2b28788e1bb8c7672b06a79.tar.gz
plus-789277e423144102b2b28788e1bb8c7672b06a79.tar.bz2
plus-789277e423144102b2b28788e1bb8c7672b06a79.tar.xz
plus-789277e423144102b2b28788e1bb8c7672b06a79.zip
Add empty roulettehandler.
Diffstat (limited to 'src/net/tmwa/roulettehandler.cpp')
-rw-r--r--src/net/tmwa/roulettehandler.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/net/tmwa/roulettehandler.cpp b/src/net/tmwa/roulettehandler.cpp
new file mode 100644
index 000000000..63957d926
--- /dev/null
+++ b/src/net/tmwa/roulettehandler.cpp
@@ -0,0 +1,50 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2015 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "net/tmwa/roulettehandler.h"
+
+#include "debug.h"
+
+extern Net::RouletteHandler *rouletteHandler;
+
+namespace TmwAthena
+{
+
+RouletteHandler::RouletteHandler() :
+ MessageHandler()
+{
+ static const uint16_t _messages[] =
+ {
+ 0
+ };
+ handledMessages = _messages;
+ rouletteHandler = this;
+}
+
+void RouletteHandler::handleMessage(Net::MessageIn &msg)
+{
+ switch (msg.getId())
+ {
+ default:
+ break;
+ }
+}
+
+} // namespace TmwAthena