LeviLamina
Loading...
Searching...
No Matches
CaretMeasureData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct CaretMeasureData {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<4, 4, int const> position;
10 ::ll::TypedStorage<1, 1, bool const> shouldRender;
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 CaretMeasureData();
16
17public:
18 // member functions
19 // NOLINTBEGIN
20 MCAPI CaretMeasureData(int _position, bool _shouldRender);
21 // NOLINTEND
22
23public:
24 // constructor thunks
25 // NOLINTBEGIN
26 MCAPI void* $ctor(int _position, bool _shouldRender);
27 // NOLINTEND
28};
Definition CaretMeasureData.h:5