LeviLamina
Loading...
Searching...
No Matches
Wireframe.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct Wireframe {
6public:
7 // member variables
8 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 Wireframe& operator=(Wireframe const&);
17 Wireframe(Wireframe const&);
18 Wireframe();
19};
Definition Wireframe.h:5
Definition Alias.h:14