LeviLamina
Loading...
Searching...
No Matches
ScriptMusicOptions.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/binding_type/ClassBindingBuilder.h"
7#include "mc/deps/scripting/binding_type/InterfaceBindingBuilder.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Scripting { struct Error; }
12// clang-format on
13
14namespace ScriptModuleMinecraft {
15
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 ScriptMusicOptions& operator=(ScriptMusicOptions const&);
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI ::std::optional<::Scripting::Error> validate() const;
35 // NOLINTEND
36
37public:
38 // static functions
39 // NOLINTBEGIN
40 MCAPI static ::Scripting::ClassBindingBuilder<::ScriptModuleMinecraft::ScriptMusicOptions> bindV010();
41
42 MCAPI static ::Scripting::InterfaceBindingBuilder<::ScriptModuleMinecraft::ScriptMusicOptions> bindV1();
43 // NOLINTEND
44
45public:
46 // static variables
47 // NOLINTBEGIN
48 MCAPI static float const& FADE_DEFAULT();
49
50 MCAPI static float const& FADE_MIN();
51
52 MCAPI static bool const& LOOP_DEFAULT();
53
54 MCAPI static float const& VOLUME_DEFAULT();
55
56 MCAPI static float const& VOLUME_MIN();
57 // NOLINTEND
58};
59
60} // namespace ScriptModuleMinecraft
Definition ScriptMusicOptions.h:16
Definition Alias.h:14