aboutsummaryrefslogtreecommitdiff
path: root/src/client/item/items.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/item/items.hh')
-rw-r--r--src/client/item/items.hh17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/client/item/items.hh b/src/client/item/items.hh
new file mode 100644
index 0000000..53cebfa
--- /dev/null
+++ b/src/client/item/items.hh
@@ -0,0 +1,17 @@
+#ifndef CLIENT_ITEM_ITEMS_HH_
+#define CLIENT_ITEM_ITEMS_HH_
+
+#include "client/item/block.hh"
+#include "shared/item/item.hh"
+#include "shared/item/items.hh"
+
+namespace client {
+namespace item {
+
+shared::item::item_t make_item(const shared::item::item::type_t& type,
+ const std::uint32_t& quantity) noexcept;
+
+} // namespace item
+} // namespace client
+
+#endif