LeviLamina
Loading...
Searching...
No Matches
CrashDumpFrameData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8// clang-format on
9
10struct CrashDumpFrameData {
11public:
12 // member variables
13 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 CrashDumpFrameData& operator=(CrashDumpFrameData const&);
26 CrashDumpFrameData(CrashDumpFrameData const&);
27 CrashDumpFrameData();
28
29public:
30 // member functions
31 // NOLINTBEGIN
33 int numControllers,
34 int primaryControllerId,
35 uint64 freeMemory,
36 float x,
37 float y,
38 float z,
39 float direction
40 );
41 // NOLINTEND
42
43public:
44 // static variables
45 // NOLINTBEGIN
46 MCNAPI static ::std::add_lvalue_reference_t<::CrashDumpFormatEntryImpl const[]> kFormat();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCNAPI void*
53 $ctor(int numControllers, int primaryControllerId, uint64 freeMemory, float x, float y, float z, float direction);
54 // NOLINTEND
55};
Definition CrashDumpFormatEntryImpl.h:8
static MCAPI ::std::add_lvalue_reference_t<::CrashDumpFormatEntryImpl const[]> kFormat()
MCAPI CrashDumpFrameData(int numControllers, int primaryControllerId, uint64 freeMemory, float x, float y, float z, float direction)
MCAPI void * $ctor(int numControllers, int primaryControllerId, uint64 freeMemory, float x, float y, float z, float direction)
Definition Alias.h:14