diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-05-14 20:51:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-05-14 20:51:36 +0300 |
commit | 5f82169b8d23d70760967da59709c86abc5ae949 (patch) | |
tree | 5ec68e9af60e6122ca9ae0af163a46be6c606df4 /src/net/eathena/refinerecv.h | |
parent | bb5f144ce9e58def9706e4fa15e5d2d676566c8b (diff) | |
download | manaverse-5f82169b8d23d70760967da59709c86abc5ae949.tar.gz manaverse-5f82169b8d23d70760967da59709c86abc5ae949.tar.bz2 manaverse-5f82169b8d23d70760967da59709c86abc5ae949.tar.xz manaverse-5f82169b8d23d70760967da59709c86abc5ae949.zip |
Add packet SMSG_REFINE_WINDOW_OPEN 0x0aa0
Diffstat (limited to 'src/net/eathena/refinerecv.h')
-rw-r--r-- | src/net/eathena/refinerecv.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/net/eathena/refinerecv.h b/src/net/eathena/refinerecv.h new file mode 100644 index 000000000..6f706b42c --- /dev/null +++ b/src/net/eathena/refinerecv.h @@ -0,0 +1,37 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2019 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_REFINERECV_H +#define NET_EATHENA_REFINERECV_H + +namespace Net +{ + class MessageIn; +} // namespace Net + +namespace EAthena +{ + namespace RefineRecv + { + void processRefineOpen(Net::MessageIn &msg); + } // namespace RefineRecv +} // namespace EAthena + +#endif // NET_EATHENA_REFINERECV_H |