LeviLamina
Loading...
Searching...
No Matches
EducationOptions.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7#include "mc/deps/core/utility/ServiceReference.h"
8#include "mc/resources/ResourcePackListener.h"
9
10// auto generated forward declare list
11// clang-format off
12class LevelData;
13class PackCapability;
15// clang-format on
16
17class EducationOptions : public ::Bedrock::EnableNonOwnerReferences, public ::ResourcePackListener {
18public:
19 // member variables
20 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 EducationOptions& operator=(EducationOptions const&);
29 EducationOptions(EducationOptions const&);
30 EducationOptions();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~EducationOptions() /*override*/ = default;
36
37 virtual void onActiveResourcePacksChanged(::ResourcePackManager& manager) /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCNAPI explicit EducationOptions(::ResourcePackManager* packMan);
44
45 MCNAPI void init(::LevelData const& levelData);
46 // NOLINTEND
47
48public:
49 // static functions
50 // NOLINTBEGIN
51 MCNAPI static ::ServiceReference<::EducationOptions> _getCurrentOptions();
52
53 MCNAPI static ::PackCapability getPackCapability();
54
55 MCNAPI static bool isBaseCodeBuilderEnabled();
56
57 MCNAPI static bool isChemistryEnabled();
58
59 MCNAPI static bool isCodeBuilderEnabled();
60
61 MCNAPI static bool isEducationEnabled();
62 // NOLINTEND
63
64public:
65 // static variables
66 // NOLINTBEGIN
67 MCNAPI static ::EducationOptions& DEFAULT_OPTION();
68 // NOLINTEND
69
70public:
71 // constructor thunks
72 // NOLINTBEGIN
73 MCNAPI void* $ctor(::ResourcePackManager* packMan);
74 // NOLINTEND
75
76public:
77 // virtual function thunks
78 // NOLINTBEGIN
80
81
82 // NOLINTEND
83
84public:
85 // vftables
86 // NOLINTBEGIN
87 MCNAPI static void** $vftableForResourcePackListener();
88
90 // NOLINTEND
91};
Definition EnableNonOwnerReferences.h:7
static MCAPI void ** $vftableForResourcePackListener()
static MCAPI ::EducationOptions & DEFAULT_OPTION()
static MCAPI bool isBaseCodeBuilderEnabled()
static MCAPI ::PackCapability getPackCapability()
static MCAPI void ** $vftableForEnableNonOwnerReferences()
MCAPI void * $ctor(::ResourcePackManager *packMan)
static MCAPI bool isChemistryEnabled()
static MCAPI bool isCodeBuilderEnabled()
MCAPI void $onActiveResourcePacksChanged(::ResourcePackManager &manager)
MCAPI EducationOptions(::ResourcePackManager *packMan)
static MCAPI bool isEducationEnabled()
MCAPI void init(::LevelData const &levelData)
static MCAPI ::ServiceReference<::EducationOptions > _getCurrentOptions()
Definition LevelData.h:55
Definition PackCapability.h:5
Definition ResourcePackListener.h:10
Definition ResourcePackManager.h:35
Definition Alias.h:14