LeviLamina
Loading...
Searching...
No Matches
ScriptComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { class WeakLifetimeScope; }
8namespace Scripting { struct ClassBinding; }
9// clang-format on
10
11namespace ScriptModuleMinecraft {
12
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 ScriptComponent& operator=(ScriptComponent const&);
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 0
31 virtual ~ScriptComponent();
32
33 // vIndex: 1
34 virtual ::std::string const& getTypeId_V1() const;
35
36 // vIndex: 2
37 virtual ::std::string const& getTypeId_V2() const;
38
39 // vIndex: 3
40 virtual bool _isValid() const = 0;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCNAPI ScriptComponent(::Scripting::WeakLifetimeScope const& scope, ::std::optional<::std::string> id);
47 // NOLINTEND
48
49public:
50 // static functions
51 // NOLINTBEGIN
52 MCNAPI static ::Scripting::ClassBinding bind();
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCNAPI void* $ctor(::Scripting::WeakLifetimeScope const& scope, ::std::optional<::std::string> id);
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCNAPI void $dtor();
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
70 MCNAPI ::std::string const& $getTypeId_V1() const;
71
72 MCNAPI ::std::string const& $getTypeId_V2() const;
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCNAPI static void** $vftable();
79 // NOLINTEND
80};
81
82} // namespace ScriptModuleMinecraft
Definition ScriptComponent.h:13
MCAPI::std::string const & $getTypeId_V2() const
MCAPI void * $ctor(::Scripting::WeakLifetimeScope const &scope, ::std::optional<::std::string > id)
static MCAPI ::Scripting::ClassBinding bind()
MCAPI ScriptComponent(::Scripting::WeakLifetimeScope const &scope, ::std::optional<::std::string > id)
MCAPI::std::string const & $getTypeId_V1() const
Definition WeakLifetimeScope.h:12
Definition Alias.h:14