LeviLamina
Loading...
Searching...
No Matches
PackDetails.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/world/PackActionError.h"
7#include "mc/deps/core/file/PathBuffer.h"
8
9namespace World {
10
11struct PackDetails {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<8, 32, ::std::string> mName;
16 ::ll::TypedStorage<8, 32, ::std::string> mType;
17 ::ll::TypedStorage<8, 32, ::std::string> mDescription;
18 ::ll::TypedStorage<8, 32, ::std::string> mSize;
19 ::ll::TypedStorage<8, 32, ::std::string> mId;
20 ::ll::TypedStorage<8, 32, ::std::string> mContentId;
21 ::ll::TypedStorage<8, 32, ::std::string> mIconPathStr;
22 ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mIconPath;
23 ::ll::TypedStorage<1, 2, ::std::optional<::World::PackActionError>> mError;
24 ::ll::TypedStorage<1, 1, bool> mIsMarketplaceItem;
25 ::ll::TypedStorage<1, 1, bool> mIsPlatformLocked;
26 ::ll::TypedStorage<1, 1, bool> mHasSettings;
27 ::ll::TypedStorage<1, 1, bool> mIsAddon;
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 PackDetails();
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI PackDetails(::World::PackDetails const&);
38
39 MCAPI ::World::PackDetails& operator=(::World::PackDetails const&);
40
41 MCAPI ~PackDetails();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(::World::PackDetails const&);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCFOLD void $dtor();
54 // NOLINTEND
55};
56
57} // namespace World
Definition PackDetails.h:7