LeviLamina
Loading...
Searching...
No Matches
SupportedScriptComponentFactoriesEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/BaseGameVersion.h"
7
8namespace ScriptModuleMinecraft {
9
10struct SupportedScriptComponentFactoriesEntry {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 32, ::BaseGameVersion> mMinVersion;
15 ::ll::TypedStorage<8, 40, ::std::optional<::BaseGameVersion>> mMaxVersionExclusive;
16 ::ll::TypedStorage<8, 32, ::std::string> mPrerelease;
17 ::ll::TypedStorage<8, 64, ::std::unordered_set<::std::string_view>> mSupportedComponentTypeNames;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 SupportedScriptComponentFactoriesEntry& operator=(SupportedScriptComponentFactoriesEntry const&);
23 SupportedScriptComponentFactoriesEntry();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI
29 SupportedScriptComponentFactoriesEntry(::ScriptModuleMinecraft::SupportedScriptComponentFactoriesEntry const&);
30
31 MCAPI SupportedScriptComponentFactoriesEntry(
32 ::BaseGameVersion minVersion,
33 ::std::unordered_set<::std::string_view> supportedComponentTypeNames,
34 ::std::string prerelease,
35 ::std::optional<::BaseGameVersion> maxVersionExclusive
36 );
37
38 MCAPI ~SupportedScriptComponentFactoriesEntry();
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
45
46 MCAPI void* $ctor(
47 ::BaseGameVersion minVersion,
48 ::std::unordered_set<::std::string_view> supportedComponentTypeNames,
49 ::std::string prerelease,
50 ::std::optional<::BaseGameVersion> maxVersionExclusive
51 );
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCAPI void $dtor();
58 // NOLINTEND
59};
60
61} // namespace ScriptModuleMinecraft
Definition BaseGameVersion.h:8
Definition SupportedScriptComponentFactoriesEntry.h:10