diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-09-30 14:07:33 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-09-30 14:07:33 +0000 |
commit | 5bb46ab6358834d13f483628eb5ddd43b4c985bc (patch) | |
tree | 4bfdaf98b3afe8d98d6014fd40939c1090fcdd86 /src/gui/shop.h | |
parent | 2355936b926cb16a5e3e582fce43a9f9a237e78e (diff) | |
download | mana-client-5bb46ab6358834d13f483628eb5ddd43b4c985bc.tar.gz mana-client-5bb46ab6358834d13f483628eb5ddd43b4c985bc.tar.bz2 mana-client-5bb46ab6358834d13f483628eb5ddd43b4c985bc.tar.xz mana-client-5bb46ab6358834d13f483628eb5ddd43b4c985bc.zip |
*** empty log message ***
Diffstat (limited to 'src/gui/shop.h')
-rw-r--r-- | src/gui/shop.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/gui/shop.h b/src/gui/shop.h new file mode 100644 index 00000000..b8051536 --- /dev/null +++ b/src/gui/shop.h @@ -0,0 +1,46 @@ +/** + + The Mana World + Copyright 2004 The Mana World Development Team + + This file is part of The Mana World. + + The Mana World 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. + + The Mana World 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 The Mana World; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + By ElvenProgrammer aka Eugenio Favalli (umperio@users.sourceforge.net) + +*/ + +#ifndef _SHOP_H +#define _SHOP_H + +#include <stdlib.h> +#include <stdio.h> + +struct ITEM_SHOP { + char name[30]; + int price; + short id; + ITEM_SHOP *next; +}; + +extern int n_items; + +char *shop_list(int index, int *list_size); +void add_item(short id, int price); +void close_shop(); +short get_item_id(int index); + +#endif |