Rename windows directories to remove spaces. This backslash business is getting old.

This commit is contained in:
Sylae Jiendra Corell
2014-06-17 14:45:17 -06:00
parent 29906153cf
commit a8872eb199
276 changed files with 0 additions and 0 deletions

22
Win32/game/boe.itemdata.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef _ITEMDATA_H
#define _ITEMDATA_H
item_record_type return_dummy_item();
item_record_type get_stored_item(short which);
item_record_type get_food();
item_record_type get_weapon(short loot);
item_record_type get_armor(short loot);
item_record_type get_helm(short loot);
item_record_type get_gloves(short loot);
item_record_type get_boots(short loot);
item_record_type get_shield(short loot);
item_record_type get_potion(short loot);
item_record_type get_scroll(short loot);
item_record_type get_missile(short loot);
item_record_type get_poison(short loot);
item_record_type get_wand(short loot);
item_record_type get_ring(short loot);
item_record_type get_necklace(short loot);
item_record_type pull_item_of_type(short loot_max,short min_val,short max_val,short t1, short t2, short t3);
#endif