diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-04-17 23:45:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-04-17 23:45:47 +0300 |
commit | e7f9514cab45863edf6a613ef8563bb15ff66e96 (patch) | |
tree | 24b5fd3ab69fffdea933122b0e2aec076d3d22b4 /src/net/eathena/attendancerecv.cpp | |
parent | 0f253bcecd8216ab990d79b2b0db18e527ab563f (diff) | |
download | plus-e7f9514cab45863edf6a613ef8563bb15ff66e96.tar.gz plus-e7f9514cab45863edf6a613ef8563bb15ff66e96.tar.bz2 plus-e7f9514cab45863edf6a613ef8563bb15ff66e96.tar.xz plus-e7f9514cab45863edf6a613ef8563bb15ff66e96.zip |
Add packet SMSG_OPEN_WINDOW2 0x0ae2.s20180419
Diffstat (limited to 'src/net/eathena/attendancerecv.cpp')
-rw-r--r-- | src/net/eathena/attendancerecv.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/net/eathena/attendancerecv.cpp b/src/net/eathena/attendancerecv.cpp new file mode 100644 index 000000000..73c21ed3e --- /dev/null +++ b/src/net/eathena/attendancerecv.cpp @@ -0,0 +1,39 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2018 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/eathena/attendancerecv.h" + +#include "logger.h" + +#include "net/messagein.h" + +#include "debug.h" + +namespace EAthena +{ + +void AttendanceRecv::processOpenWindow(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + msg.readInt8("window type"); + msg.readInt32("data"); +} + +} // namespace EAthena |