LeviLamina
Loading...
Searching...
No Matches
ScriptPluginDetails.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { struct InterfaceBinding; }
8// clang-format on
9
10namespace ScriptModuleDebugUtilities {
11
12struct ScriptPluginDetails {
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<8, 32, ::std::string> mName;
17 ::ll::TypedStorage<8, 32, ::std::string> mPackId;
18 ::ll::TypedStorage<8, 32, ::std::string> mModuleUUID;
19 ::ll::TypedStorage<8, 64, ::std::unordered_map<::std::string, int>> mHandleCounts;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ScriptPluginDetails();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI ScriptPluginDetails(::ScriptModuleDebugUtilities::ScriptPluginDetails const&);
30
31 MCAPI ScriptPluginDetails(::std::string const& name, ::std::string const& packId, ::std::string const& moduleUUID);
32
33 MCAPI ::ScriptModuleDebugUtilities::ScriptPluginDetails&
35
36 MCAPI ::ScriptModuleDebugUtilities::ScriptPluginDetails&
38
39 MCAPI ~ScriptPluginDetails();
40 // NOLINTEND
41
42public:
43 // static functions
44 // NOLINTBEGIN
45 MCAPI static ::Scripting::InterfaceBinding bind();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
52
53 MCAPI void* $ctor(::std::string const& name, ::std::string const& packId, ::std::string const& moduleUUID);
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59 MCAPI void $dtor();
60 // NOLINTEND
61};
62
63} // namespace ScriptModuleDebugUtilities
Definition ScriptPluginDetails.h:12
Definition InterfaceBinding.h:16