LeviLamina
Loading...
Searching...
No Matches
WorldSeedModel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/resources/AllowListPath.h"
7#include "mc/deps/core/file/PathBuffer.h"
8#include "mc/deps/core/utility/NonOwnerPointer.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace Core { class Path; }
13namespace OreUI { class IResourceAllowList; }
14// clang-format on
15
16class WorldSeedModel {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 32, ::std::string> mProductId;
21 ::ll::TypedStorage<8, 32, ::std::string> mTitle;
22 ::ll::TypedStorage<8, 32, ::std::string> mSeed;
23 ::ll::TypedStorage<8, 96, ::OreUI::AllowListPath> mOreUIImagePath;
24 ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mImagePath;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 WorldSeedModel();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI WorldSeedModel(::std::string const& productId, ::std::string const& title, ::std::string const& seed);
35
36 MCAPI void setImagePath(
37 ::Core::Path const& fullpath,
38 ::Bedrock::NotNullNonOwnerPtr<::OreUI::IResourceAllowList> const& resourceAllowList
39 );
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::std::string const& productId, ::std::string const& title, ::std::string const& seed);
46 // NOLINTEND
47};
Definition Path.h:11
Definition IResourceAllowList.h:7
Definition WorldSeedModel.h:5