blob: 681c0d6898c22f88aa73e8836309fe0b9d019fdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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_
|