LeviLamina
Loading...
Searching...
No Matches
InventorySource.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/ContainerID.h"
7#include "mc/world/inventory/transaction/InventorySourceType.h"
8
10public:
11 // InventorySource inner types define
12 enum class InventorySourceFlags : uint {
13 NoFlag = 0,
14 WorldInteractionRandom = 1,
15 };
16
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, ::InventorySourceType> mType;
21 ::ll::TypedStorage<1, 1, ::ContainerID> mContainerId;
22 ::ll::TypedStorage<4, 4, ::InventorySource::InventorySourceFlags> mFlags;
23 // NOLINTEND
24
25public:
26 bool operator==(InventorySource const& other) const {
27 return this->mType == other.mType && this->mContainerId == other.mContainerId && this->mFlags == other.mFlags;
28 }
29};
Definition InventorySource.h:9