summaryrefslogtreecommitdiff
path: root/src/net/eathena/npcrecv.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-27 21:26:15 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-27 21:26:15 +0300
commite6e9b2c524f28e18f7efa582ee0dd0ee1e1420df (patch)
tree02e52352e86985edc08308b22731473da7c9b4a9 /src/net/eathena/npcrecv.h
parent2dbb62e760853f88a19e6e783870de156d52f8c6 (diff)
downloadManaVerse-e6e9b2c524f28e18f7efa582ee0dd0ee1e1420df.tar.gz
ManaVerse-e6e9b2c524f28e18f7efa582ee0dd0ee1e1420df.tar.bz2
ManaVerse-e6e9b2c524f28e18f7efa582ee0dd0ee1e1420df.tar.xz
ManaVerse-e6e9b2c524f28e18f7efa582ee0dd0ee1e1420df.zip
Move receive code from npchandler into separate file.
Diffstat (limited to 'src/net/eathena/npcrecv.h')
-rw-r--r--src/net/eathena/npcrecv.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/net/eathena/npcrecv.h b/src/net/eathena/npcrecv.h
new file mode 100644
index 000000000..865d53f3a
--- /dev/null
+++ b/src/net/eathena/npcrecv.h
@@ -0,0 +1,42 @@
+/*
+ * 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/>.
+ */
+
+#ifndef NET_EATHENA_NPCRECV_H
+#define NET_EATHENA_NPCRECV_H
+
+#include "net/ea/npchandler.h"
+
+#include "net/eathena/messagehandler.h"
+
+namespace EAthena
+{
+ namespace NpcRecv
+ {
+ void processNpcCutin(Net::MessageIn &msg);
+ void processNpcViewPoint(Net::MessageIn &msg);
+ void processNpcShowProgressBar(Net::MessageIn &msg);
+ void processNpcCloseTimeout(Net::MessageIn &msg);
+ void processArea(Net::MessageIn &msg);
+ void processShowDigit(Net::MessageIn &msg);
+ void processProgressBarAbort(Net::MessageIn &msg);
+ } // namespace NpcRecv
+} // namespace EAthena
+
+#endif // NET_EATHENA_NPCRECV_H