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