aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-12-02 08:09:02 -0500
committerClyne Sullivan <tullivan99@gmail.com>2015-12-02 08:09:02 -0500
commit1d995c34c871bdb48e35c083ef0d9027dc18d719 (patch)
treec1271faef4e76ae2ef9db1d3de7a32c5525344ad /include
parent825d67be06c983d492de8350db64a2bebccaad82 (diff)
killed threads
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)