LeviLamina
Loading...
Searching...
No Matches
PortfolioBookItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/Item.h"
7
8// auto generated forward declare list
9// clang-format off
10class ItemStack;
11class Player;
12// clang-format on
13
14class PortfolioBookItem : public ::Item {
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual ::ItemStack& use(::ItemStack& item, ::Player& player) const /*override*/;
19 // NOLINTEND
20
21public:
22 // virtual function thunks
23 // NOLINTBEGIN
24
25 // NOLINTEND
26};
Definition ItemStack.h:35
Definition Player.h:137
Definition PortfolioBookItem.h:14