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