diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-06-13 21:01:08 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-06-13 21:01:08 -0400 |
commit | 316df0931c66e43e69f21bda28c77b9bdb1e8bca (patch) | |
tree | d98231e4b41d046a2a60ee9c6f1cc724a9e3837d /include/components/itemdrop.hpp | |
parent | 11b8e727e04ed6095164bb826541409f88047625 (diff) |
component reorginization; entity flashes
Diffstat (limited to 'include/components/itemdrop.hpp')
-rw-r--r-- | include/components/itemdrop.hpp | 13 |
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_ |