LeviLamina
Loading...
Searching...
No Matches
ScreenshotScreenController.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/screens/controllers/ClientInstanceScreenController.h"
8#include "mc/deps/core/file/PathBuffer.h"
9
10// auto generated forward declare list
11// clang-format off
13class TaskGroup;
14namespace Json { class Value; }
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mScreenshotPath;
22 ::ll::TypedStorage<4, 4, ::ui::DirtyFlag> mNextTickDirtyFlag;
23 ::ll::TypedStorage<8, 8, ::std::chrono::steady_clock::time_point> mCloseScreenAt;
24 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::TaskGroup>> mAsyncTaskGroup;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 ScreenshotScreenController();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ~ScreenshotScreenController() /*override*/;
35
36 virtual void addStaticScreenVars(::Json::Value& globalVars) /*override*/;
37
38 virtual ::ui::DirtyFlag tick() /*override*/;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI explicit ScreenshotScreenController(::std::shared_ptr<::ClientInstanceScreenModel> model);
45
46 MCAPI void _takeScreenshot();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::std::shared_ptr<::ClientInstanceScreenModel> model);
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58 MCAPI void $dtor();
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64 MCAPI void $addStaticScreenVars(::Json::Value& globalVars);
65
66 MCAPI ::ui::DirtyFlag $tick();
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
73
74 MCNAPI static void** $vftableForScreenController();
75 // NOLINTEND
76};
Definition ClientInstanceScreenController.h:5
Definition ClientInstanceScreenModel.h:5
Definition Value.h:16
Definition ScreenshotScreenController.h:5
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI void ** $vftableForScreenController()
Definition TaskGroup.h:57