LeviLamina
Loading...
Searching...
No Matches
AttachmentProperties.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Cursor {
6
7struct AttachmentProperties {
8public:
9 // member variables
10 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 AttachmentProperties& operator=(AttachmentProperties const&);
25 AttachmentProperties(AttachmentProperties const&);
26 AttachmentProperties();
27};
28
29} // namespace Editor::Cursor
Definition Alias.h:14