LeviLamina
Loading...
Searching...
No Matches
CDScopedGameplay.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/CrashDumpLogStringID.h"
7
8struct CDScopedGameplay {
9public:
10 // member variables
11 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 CDScopedGameplay& operator=(CDScopedGameplay const&);
21 CDScopedGameplay(CDScopedGameplay const&);
22 CDScopedGameplay();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27#ifdef LL_PLAT_C
28 MCNAPI CDScopedGameplay(
29 ::CrashDumpLogStringID func,
30 ::CrashDumpLogStringID tagStart,
31 ::CrashDumpLogStringID tagEnd,
32 int clientId,
33 int buildActionIntention
34 );
35
36 MCNAPI ~CDScopedGameplay();
37#endif
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43#ifdef LL_PLAT_C
44 MCNAPI void* $ctor(
45 ::CrashDumpLogStringID func,
46 ::CrashDumpLogStringID tagStart,
47 ::CrashDumpLogStringID tagEnd,
48 int clientId,
49 int buildActionIntention
50 );
51#endif
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57#ifdef LL_PLAT_C
58 MCNAPI void $dtor();
59#endif
60 // NOLINTEND
61};
Definition Alias.h:14