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(PackDetails const&);
33 PackDetails();
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI PackDetails(::World::PackDetails&&);
39
40 MCAPI ::World::PackDetails& operator=(::World::PackDetails const&);
41
42 MCAPI ~PackDetails();
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor(::World::PackDetails&&);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCFOLD void $dtor();
55 // NOLINTEND
56};
57
58} // namespace World
Definition PackDetails.h:7