LeviLamina
Loading...
Searching...
No Matches
AbstractScreenSetupCleanupStrategy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/renderer/screen/EyeRenderingModeBit.h"
7
8// auto generated forward declare list
9// clang-format off
10class ScreenContext;
11// clang-format on
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual ~AbstractScreenSetupCleanupStrategy() = default;
18
19 virtual void setupScreen(::ScreenContext& screenContext);
20
21 virtual void cleanupScreen(::ScreenContext& screenContext);
22
23 virtual ::EyeRenderingModeBit getEyeRenderingMode() const = 0;
24 // NOLINTEND
25
26public:
27 // virtual function thunks
28 // NOLINTBEGIN
29 MCFOLD void $cleanupScreen(::ScreenContext& screenContext);
30 // NOLINTEND
31};
Definition AbstractScreenSetupCleanupStrategy.h:5
Definition ScreenContext.h:5