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;
14// clang-format on
15
16class EducationOptions : public ::Bedrock::EnableNonOwnerReferences, public ::ResourcePackListener {
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 EducationOptions& operator=(EducationOptions const&);
28 EducationOptions(EducationOptions const&);
29 EducationOptions();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ~EducationOptions() /*override*/;
35
36 virtual void onActiveResourcePacksChanged(::ResourcePackManager& manager) /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCNAPI void init(::LevelData const& levelData);
43 // NOLINTEND
44
45public:
46 // static functions
47 // NOLINTBEGIN
48 MCNAPI static ::ServiceReference<::EducationOptions> _getCurrentOptions();
49
50 MCNAPI static bool isChemistryEnabled();
51
52 MCNAPI static bool isCodeBuilderEnabled();
53 // NOLINTEND
54
55public:
56 // static variables
57 // NOLINTBEGIN
58 MCNAPI static ::EducationOptions& DEFAULT_OPTION();
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCNAPI void $dtor();
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
71
72
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCNAPI static void** $vftableForResourcePackListener();
79
81 // NOLINTEND
82};
Definition EnableNonOwnerReferences.h:7
static MCAPI void ** $vftableForResourcePackListener()
static MCAPI ::EducationOptions & DEFAULT_OPTION()
MCAPI void $dtor()
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI bool isChemistryEnabled()
static MCAPI bool isCodeBuilderEnabled()
MCAPI void $onActiveResourcePacksChanged(::ResourcePackManager &manager)
MCAPI void init(::LevelData const &levelData)
static MCAPI ::ServiceReference<::EducationOptions > _getCurrentOptions()
Definition LevelData.h:50
Definition ResourcePackListener.h:10
Definition ResourcePackManager.h:29
Definition Alias.h:14