LeviLamina
Loading...
Searching...
No Matches
AttributeScriptActorComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/Result_deprecated.h"
7#include "mc/scripting/modules/minecraft/components/ScriptActorComponent.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Scripting { struct ClassBinding; }
12// clang-format on
13
14namespace ScriptModuleMinecraft {
15
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual ~AttributeScriptActorComponent() /*override*/ = default;
34
35 // vIndex: 4
36 virtual ::Scripting::Result_deprecated<float> getCurrent() const;
37
38 // vIndex: 5
39 virtual ::Scripting::Result_deprecated<bool> setCurrent(float const& value) const;
40
41 // vIndex: 6
42 virtual ::Scripting::Result_deprecated<float> getValue() const;
43
44 // vIndex: 7
45 virtual ::Scripting::Result_deprecated<float> getEffectiveMinValue() const;
46
47 // vIndex: 8
48 virtual ::Scripting::Result_deprecated<float> getEffectiveMaxValue() const;
49
50 // vIndex: 9
51 virtual ::Scripting::Result_deprecated<void> resetToMinValue() const;
52
53 // vIndex: 10
54 virtual ::Scripting::Result_deprecated<void> resetToMaxValue() const;
55
56 // vIndex: 11
57 virtual ::Scripting::Result_deprecated<void> resetToDefaultValue() const;
58
59 // vIndex: 3
60 virtual bool _isValid() const /*override*/;
61 // NOLINTEND
62
63public:
64 // static functions
65 // NOLINTBEGIN
66 MCNAPI static ::Scripting::ClassBinding bind();
67 // NOLINTEND
68
69public:
70 // virtual function thunks
71 // NOLINTBEGIN
72 MCNAPI ::Scripting::Result_deprecated<float> $getCurrent() const;
73
74 MCNAPI ::Scripting::Result_deprecated<bool> $setCurrent(float const& value) const;
75
76 MCNAPI ::Scripting::Result_deprecated<float> $getValue() const;
77
78 MCNAPI ::Scripting::Result_deprecated<float> $getEffectiveMinValue() const;
79
80 MCNAPI ::Scripting::Result_deprecated<float> $getEffectiveMaxValue() const;
81
82 MCNAPI ::Scripting::Result_deprecated<void> $resetToMinValue() const;
83
84 MCNAPI ::Scripting::Result_deprecated<void> $resetToMaxValue() const;
85
86 MCNAPI ::Scripting::Result_deprecated<void> $resetToDefaultValue() const;
87
88 MCNAPI bool $_isValid() const;
89 // NOLINTEND
90
91public:
92 // vftables
93 // NOLINTBEGIN
94 MCNAPI static void** $vftable();
95 // NOLINTEND
96};
97
98} // namespace ScriptModuleMinecraft
Definition AttributeScriptActorComponent.h:16
MCAPI ::Scripting::Result_deprecated< float > $getCurrent() const
MCAPI ::Scripting::Result_deprecated< void > $resetToMinValue() const
static MCAPI ::Scripting::ClassBinding bind()
MCAPI ::Scripting::Result_deprecated< void > $resetToMaxValue() const
MCAPI ::Scripting::Result_deprecated< bool > $setCurrent(float const &value) const
MCAPI ::Scripting::Result_deprecated< float > $getEffectiveMaxValue() const
MCAPI ::Scripting::Result_deprecated< float > $getEffectiveMinValue() const
MCAPI ::Scripting::Result_deprecated< void > $resetToDefaultValue() const
MCAPI ::Scripting::Result_deprecated< float > $getValue() const
Definition ScriptActorComponent.h:21
Definition Alias.h:14