LeviLamina
Loading...
Searching...
No Matches
ScriptDebuggerWatchdog.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/debugger/IScriptDebuggerWatchdog.h"
7
8class ScriptDebuggerWatchdog : public ::IScriptDebuggerWatchdog {
9public:
10 // member variables
11 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 ScriptDebuggerWatchdog& operator=(ScriptDebuggerWatchdog const&);
19 ScriptDebuggerWatchdog(ScriptDebuggerWatchdog const&);
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual ~ScriptDebuggerWatchdog() /*override*/ = default;
25
26 virtual bool requireClose() const /*override*/;
27
28 virtual void startListenTimeout(::std::chrono::seconds duration) /*override*/;
29
30 virtual bool listenTimeoutExpired() const /*override*/;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
37
38#ifdef LL_PLAT_C
39 MCNAPI void startLeaveGame();
40#endif
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCNAPI void* $ctor();
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCNAPI bool $requireClose() const;
53
54 MCNAPI void $startListenTimeout(::std::chrono::seconds duration);
55
56 MCNAPI bool $listenTimeoutExpired() const;
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition IScriptDebuggerWatchdog.h:5
MCAPI bool $requireClose() const
static MCAPI void ** $vftable()
MCAPI void * $ctor()
MCAPI bool $listenTimeoutExpired() const
MCAPI void $startListenTimeout(::std::chrono::seconds duration)
Definition Alias.h:14