LeviLamina
Loading...
Searching...
No Matches
ItemTransactionLogger.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
9class ItemStack;
11// clang-format on
12
13namespace ItemTransactionLogger {
14// functions
15// NOLINTBEGIN
16MCNAPI void initializeLogger(bool enable);
17
18MCNAPI void log(::std::string const& message);
19
20MCNAPI void log(::InventoryAction const& action, ::std::string const& message);
21
22MCNAPI void log(::ItemStack const& item, ::std::string const& message);
23
24MCNAPI void log(::InventoryTransactionPacket const& packet, ::std::string const& message);
25
26MCNAPI void log(::ItemStackResponsePacket const& packet, ::std::string const& message);
27// NOLINTEND
28
29} // namespace ItemTransactionLogger
Definition InventoryAction.h:15
Definition InventoryTransactionPacket.h:22
Definition ItemStackResponsePacket.h:17
Definition ItemStack.h:35