Fix up some invisible dependencies and missing include guards in headers

This commit is contained in:
2014-12-06 17:20:46 -05:00
parent 089c19032b
commit 31195c12ea
10 changed files with 72 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
#ifndef BOE_GAME_ITEMDATA_H
#define BOE_GAME_ITEMDATA_H
#include "item.h"
cItemRec get_stored_item(short which);
cItemRec get_food();
cItemRec get_weapon(short loot);
@@ -15,3 +21,5 @@ cItemRec get_ring(short loot);
cItemRec get_necklace(short loot);
//item_record_type convert_item (short_item_record_type s_item);
cItemRec pull_item_of_type(unsigned int loot_max,short min_val,short max_val,eItemType t1, eItemType t2 = eItemType::NO_ITEM, eItemType t3 = eItemType::NO_ITEM);
#endif