diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-20 20:51:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-20 20:51:32 +0300 |
commit | 49fb207d7743dcf4257ec678075eaa897d615e84 (patch) | |
tree | 789baa721ec6fb0e5cd807785206ae8a5947eb9f /src/resources/beingslot.cpp | |
parent | 3e27d06bfadfa1364a45f3bd2aca405d633fbde2 (diff) | |
download | mv-49fb207d7743dcf4257ec678075eaa897d615e84.tar.gz mv-49fb207d7743dcf4257ec678075eaa897d615e84.tar.bz2 mv-49fb207d7743dcf4257ec678075eaa897d615e84.tar.xz mv-49fb207d7743dcf4257ec678075eaa897d615e84.zip |
Add BeingSlot struct for store slot information like item id, cards etc.
Diffstat (limited to 'src/resources/beingslot.cpp')
-rw-r--r-- | src/resources/beingslot.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/resources/beingslot.cpp b/src/resources/beingslot.cpp new file mode 100644 index 000000000..624a21553 --- /dev/null +++ b/src/resources/beingslot.cpp @@ -0,0 +1,24 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2016 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 "resources/beingslot.h" + +#include "debug.h" + |