LeviLamina
Loading...
Searching...
No Matches
Speed.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Editor::Settings { struct SpeedProps; }
8// clang-format on
9
10namespace Editor::Settings {
11
12class Speed {
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 Speed& operator=(Speed const&);
23 Speed(Speed const&);
24 Speed();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCNAPI explicit Speed(::std::function<void(::Editor::Settings::SpeedProps const&)> callback);
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCNAPI void* $ctor(::std::function<void(::Editor::Settings::SpeedProps const&)> callback);
36 // NOLINTEND
37};
38
39} // namespace Editor::Settings
Definition Speed.h:12
MCAPI void * $ctor(::std::function< void(::Editor::Settings::SpeedProps const &)> callback)
MCAPI Speed(::std::function< void(::Editor::Settings::SpeedProps const &)> callback)
Definition SpeedProps.h:7
Definition Alias.h:14