From 2ce675592a1a96cc9960082485797045a921676d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 20 Oct 2014 17:53:38 +0300 Subject: eathena: parse item flags. --- src/net/eathena/itemflags.h | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/net/eathena/itemflags.h (limited to 'src/net/eathena/itemflags.h') diff --git a/src/net/eathena/itemflags.h b/src/net/eathena/itemflags.h new file mode 100644 index 000000000..df4a98eaf --- /dev/null +++ b/src/net/eathena/itemflags.h @@ -0,0 +1,41 @@ +/* + * The ManaPlus Client + * Copyright (C) 2014 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 . + */ + +#ifndef NET_EATHENA_ITEMFLAGS_H +#define NET_EATHENA_ITEMFLAGS_H + +#include "localconsts.h" + +namespace EAthena +{ + union ItemFlags final + { + struct bits + { + unsigned char isIdentified : 1; + unsigned char isDamaged : 1; + unsigned char isFavorite : 1; + unsigned char spareBits : 5; + } __attribute__((packed)); + uint8_t byte; + } __attribute__((packed)); +} // namespace EAthena + +#endif // NET_EATHENA_ITEMFLAGS_H -- cgit v1.2.3-70-g09d2