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& operator=(WorldSeedModel const&);
30 WorldSeedModel();
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI WorldSeedModel(::WorldSeedModel const&);
36
37 MCAPI WorldSeedModel(::std::string const& productId, ::std::string const& title, ::std::string const& seed);
38
39 MCFOLD ::Core::PathBuffer<::std::string> const& getImagePath() const;
40
41 MCFOLD ::std::string const& getSeed() const;
42
43 MCFOLD ::std::string const& getTitle() const;
44
45 MCAPI void setImagePath(
46 ::Core::Path const& fullpath,
47 ::Bedrock::NotNullNonOwnerPtr<::OreUI::IResourceAllowList> const& resourceAllowList
48 );
49
50 MCAPI ~WorldSeedModel();
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCAPI void* $ctor(::WorldSeedModel const&);
57
58 MCAPI void* $ctor(::std::string const& productId, ::std::string const& title, ::std::string const& seed);
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCAPI void $dtor();
65 // NOLINTEND
66};
Definition Path.h:12
Definition IResourceAllowList.h:7
Definition WorldSeedModel.h:5