LeviLamina
Loading...
Searching...
No Matches
OwnedWorldTemplateData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/file/PathBuffer.h"
7
8// auto generated forward declare list
9// clang-format off
10class StoreCatalogItem;
12// clang-format on
13
14namespace World {
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 32, ::std::string> mLocalId;
21 ::ll::TypedStorage<8, 32, ::std::string> mMarketplaceId;
22 ::ll::TypedStorage<8, 32, ::std::string> mName;
23 ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mThumbnailPath;
24 ::ll::TypedStorage<1, 1, bool> mIsLocked;
25 ::ll::TypedStorage<1, 1, bool> mIsInstalled;
26 ::ll::TypedStorage<1, 1, bool> mIsPremium;
27 ::ll::TypedStorage<8, 32, ::std::string> mCreator;
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 OwnedWorldTemplateData(OwnedWorldTemplateData const&);
33 OwnedWorldTemplateData();
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCFOLD ::std::string const& getCreator() const;
39
40 MCAPI ::World::OwnedWorldTemplateData& operator=(::World::OwnedWorldTemplateData const&);
41
42 MCAPI ~OwnedWorldTemplateData();
43 // NOLINTEND
44
45public:
46 // static functions
47 // NOLINTBEGIN
48 MCAPI static ::std::string
49 _formatPackKeyword(::std::string const& rawName, ::WorldTemplatePackManifest const& manifest);
50
51 MCAPI static ::World::OwnedWorldTemplateData fromStoreCatalogItem(::StoreCatalogItem const& itemData);
52 // NOLINTEND
53
54public:
55 // static variables
56 // NOLINTBEGIN
57 MCAPI static ::std::add_lvalue_reference_t<char const[]> DEFAULT_UNKNOWN_ID();
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63 MCFOLD void $dtor();
64 // NOLINTEND
65};
66
67} // namespace World
Definition WorldTemplatePackManifest.h:8
Definition OwnedWorldTemplateData.h:7