]> git.sur5r.net Git - c128-kasse/blob - config.c
git-svn-id: https://shell.noname-ev.de/svn/kasse/c128@12 af93e077-1a23-4f1e-9cbe...
[c128-kasse] / config.c
1 #include "config.h"
2
3 unsigned long int money = 0;
4 unsigned long int num_items = 0;
5 unsigned long int items_sold = 0;
6
7 void load_config();
8
9 void load_items(){
10         num_items=3;
11         status[0].item_name = "cola";
12         status[0].price = 230;
13         status[0].times_sold = 0;
14         status[1].item_name = "mate";
15         status[1].price = 150;
16         status[1].times_sold = 0;
17         for (c = 2; c < MAX_ITEMS; ++c)
18                 status[c].item_name = NULL;
19         
20 }
21 void load_state(){
22         status[0].times_sold=23;        
23         status[1].times_sold=42;        
24 }
25 void save_state(){}