aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/entities.h3
-rw-r--r--include/inventory.h3
2 files changed, 0 insertions, 6 deletions
diff --git a/include/entities.h b/include/entities.h
index c593710..4413d41 100644
--- a/include/entities.h
+++ b/include/entities.h
@@ -145,9 +145,6 @@ public:
~Object();
void interact(void);
- std::thread runInteract() {
- return std::thread([=] { interact(); });
- }
};
#endif // ENTITIES_H
diff --git a/include/inventory.h b/include/inventory.h
index ec71e94..b62e491 100644
--- a/include/inventory.h
+++ b/include/inventory.h
@@ -81,9 +81,6 @@ public:
int takeItem(ITEM_ID id,unsigned char count); // Take 'count' items with an id of 'id' from the inventory
int useItem(void);
- bool tossd;
- int itemToss(void);
-
void setSelection(unsigned int s);
void draw(void); // Draws a text list of items in this inventory (should only be called for the player for now)