LeviLamina
Loading...
Searching...
No Matches
MovementSnapshotComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace MovementDataExtractionUtility {
6
7struct MovementSnapshotComponent {
8public:
9 // member variables
10 // NOLINTBEGIN
84 // NOLINTEND
85
86public:
87 // prevent constructor by default
88 MovementSnapshotComponent& operator=(MovementSnapshotComponent const&);
89 MovementSnapshotComponent(MovementSnapshotComponent const&);
90 MovementSnapshotComponent();
91
92public:
93 // member functions
94 // NOLINTBEGIN
95
96 // NOLINTEND
97
98public:
99 // constructor thunks
100 // NOLINTBEGIN
101 MCNAPI_C void* $ctor();
102
104
106 // NOLINTEND
107
108public:
109 // destructor thunk
110 // NOLINTBEGIN
111 MCNAPI_C void $dtor();
112 // NOLINTEND
113};
114
115} // namespace MovementDataExtractionUtility
Definition MovementSnapshotComponent.h:7
Definition Alias.h:14