From 316df0931c66e43e69f21bda28c77b9bdb1e8bca Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 13 Jun 2017 21:01:08 -0400 Subject: component reorginization; entity flashes --- include/components/itemdrop.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 include/components/itemdrop.hpp (limited to 'include/components/itemdrop.hpp') 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 + +struct ItemDrop { + ItemDrop(InventoryEntry& ie) + : item(ie) {} + + InventoryEntry item; +}; + +#endif // COMPONENTS_ITEMDROP_HPP_ -- cgit v1.2.3