LeviLamina
Loading...
Searching...
No Matches
WorldSettingsRules.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7
8// auto generated forward declare list
9// clang-format off
12struct TrialManager;
13namespace Social { class IUserManager; }
14namespace Social { struct MultiplayerServiceManager; }
15namespace Social { struct User; }
16// clang-format on
17
19public:
20 // WorldSettingsRules inner types define
21 enum class GeneralMultiplayerWarningState : int {};
22
23public:
24 // member variables
25 // NOLINTBEGIN
26 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::TrialManager>> mTrialManager;
27 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::Social::IUserManager>> mUserManager;
28 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::Social::MultiplayerServiceManager>>
29 mMultiplayerServiceManager;
30 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::Social::User>> mUser;
31 ::ll::TypedStorage<8, 8, ::MinecraftCommands&> mCommands;
32 ::ll::TypedStorage<8, 8, ::SkinRepositoryClientInterface&> mSkinRepositoryClientInterface;
33 ::ll::TypedStorage<1, 1, bool> mIsEditorModeEnabled;
34 // NOLINTEND
35
36public:
37 // prevent constructor by default
38 WorldSettingsRules& operator=(WorldSettingsRules const&);
39 WorldSettingsRules(WorldSettingsRules const&);
40 WorldSettingsRules();
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCAPI WorldSettingsRules(::WorldSettingsRules&&);
46
47 MCAPI WorldSettingsRules(
48 ::MinecraftCommands& commands,
49 ::SkinRepositoryClientInterface& skinRepositoryClientInterface,
50 ::Bedrock::NotNullNonOwnerPtr<::TrialManager> const& trialManager,
51 ::Bedrock::NotNullNonOwnerPtr<::Social::IUserManager> const& userManager,
52 ::Bedrock::NotNullNonOwnerPtr<::Social::MultiplayerServiceManager> const& multiplayerServiceManager,
53 ::std::shared_ptr<::Social::User> user,
54 bool isEditorModeEnabled
55 );
56
57 MCAPI bool _isAdhocEnabled() const;
58
59 MCAPI ~WorldSettingsRules();
60 // NOLINTEND
61
62public:
63 // constructor thunks
64 // NOLINTBEGIN
65 MCAPI void* $ctor(::WorldSettingsRules&&);
66
67 MCAPI void* $ctor(
68 ::MinecraftCommands& commands,
69 ::SkinRepositoryClientInterface& skinRepositoryClientInterface,
70 ::Bedrock::NotNullNonOwnerPtr<::TrialManager> const& trialManager,
71 ::Bedrock::NotNullNonOwnerPtr<::Social::IUserManager> const& userManager,
72 ::Bedrock::NotNullNonOwnerPtr<::Social::MultiplayerServiceManager> const& multiplayerServiceManager,
73 ::std::shared_ptr<::Social::User> user,
74 bool isEditorModeEnabled
75 );
76 // NOLINTEND
77
78public:
79 // destructor thunk
80 // NOLINTBEGIN
81 MCAPI void $dtor();
82 // NOLINTEND
83};
Definition MinecraftCommands.h:34
Definition IUserManager.h:34
Definition WorldSettingsRules.h:5
Definition SkinRepositoryClientInterface.h:5
Definition MultiplayerServiceManager.h:7
Definition User.h:7
Definition TrialManager.h:5