diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-11 17:36:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-11 17:36:03 +0300 |
commit | c4d16b36a373ba5609360e2698372926d7f2dc0f (patch) | |
tree | 62633ac84dafbe0a70574f1766105c0a42f10d79 /src/resources/avatardb.h | |
parent | d2502060c7f7b31385d2e3d836dbd7e91562a381 (diff) | |
download | plus-c4d16b36a373ba5609360e2698372926d7f2dc0f.tar.gz plus-c4d16b36a373ba5609360e2698372926d7f2dc0f.tar.bz2 plus-c4d16b36a373ba5609360e2698372926d7f2dc0f.tar.xz plus-c4d16b36a373ba5609360e2698372926d7f2dc0f.zip |
Allow load avatars from avatars.xml
Diffstat (limited to 'src/resources/avatardb.h')
-rw-r--r-- | src/resources/avatardb.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/resources/avatardb.h b/src/resources/avatardb.h new file mode 100644 index 000000000..2a74d1c2e --- /dev/null +++ b/src/resources/avatardb.h @@ -0,0 +1,39 @@ +/* + * The ManaPlus Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2013 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 AVATAR_DB_H +#define AVATAR_DB_H + +#include "localconsts.h" + +class BeingInfo; + +namespace AvatarDB +{ + void load(); + + void unload(); + + BeingInfo *get(const int id) A_WARN_UNUSED; +} + +#endif |