LeviLamina
Loading...
Searching...
No Matches
IScreenController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/DirtyFlag.h"
7#include "mc/client/gui/ViewRequest.h"
8
9// auto generated forward declare list
10// clang-format off
11struct ScreenEvent;
12// clang-format on
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 0
19 virtual ~IScreenController() = default;
20
21 // vIndex: 1
22 virtual void preFrameTick() = 0;
23
24 // vIndex: 2
25 virtual ::ui::DirtyFlag tick() = 0;
26
27 // vIndex: 3
28 virtual ::ui::ViewRequest handleEvent(::ScreenEvent&) = 0;
29
30 // vIndex: 4
31 virtual ::std::optional<::std::string> getRoute() const = 0;
32
33 // vIndex: 5
34 virtual void setScreenState(::std::vector<::std::pair<::std::string_view, ::std::string_view>> const&) = 0;
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46
47 // NOLINTEND
48};
Definition IScreenController.h:14
Definition ScreenEvent.h:14