LeviLamina
Loading...
Searching...
No Matches
glTFExportData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct glTFExportData {
6public:
7 // member variables
8 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 glTFExportData& operator=(glTFExportData const&);
25 glTFExportData(glTFExportData const&);
26 glTFExportData();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCNAPI_C ~glTFExportData();
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37 MCNAPI_C void $dtor();
38 // NOLINTEND
39};
Definition Alias.h:14