LeviLamina
Loading...
Searching...
No Matches
IBindable.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace OreUI::Detail {
6
7class IBindable {
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual ~IBindable() = default;
12
13 virtual void onReadyForBindings() = 0;
14
15 virtual void onSuspend() = 0;
16
17 virtual void onBindingsReleased() = 0;
18
19 virtual void update(double const time) = 0;
20 // NOLINTEND
21
22public:
23 // virtual function thunks
24 // NOLINTBEGIN
25
26 // NOLINTEND
27
28public:
29 // vftables
30 // NOLINTBEGIN
31 MCNAPI static void** $vftable();
32 // NOLINTEND
33};
34
35} // namespace OreUI::Detail
Definition IBindable.h:7
static MCAPI void ** $vftable()