aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/itemdrop.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/components/itemdrop.hpp')
-rw-r--r--include/components/itemdrop.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/components/itemdrop.hpp b/include/components/itemdrop.hpp
new file mode 100644
index 0000000..681c0d6
--- /dev/null
+++ b/include/components/itemdrop.hpp
@@ -0,0 +1,13 @@
+#ifndef COMPONENTS_ITEMDROP_HPP_
+#define COMPONENTS_ITEMDROP_HPP_
+
+#include <inventory.hpp>
+
+struct ItemDrop {
+ ItemDrop(InventoryEntry& ie)
+ : item(ie) {}
+
+ InventoryEntry item;
+};
+
+#endif // COMPONENTS_ITEMDROP_HPP_