LeviLamina
Loading...
Searching...
No Matches
CachedScenes.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/json/Value.h"
7
8// auto generated forward declare list
9// clang-format off
10class LayoutManager;
11class TaskGroup;
13class VisualTree;
14struct CachedScene;
15// clang-format on
16
17class CachedScenes {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<1, 1, bool> mLowMemoryDevice;
22 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::TaskGroup>> mDestroyScreenTaskGroup;
23 ::ll::TypedStorage<8, 16, ::std::map<::Json::Value, ::std::unique_ptr<::CachedScene>>> mCachedScene;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 CachedScenes();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI explicit CachedScenes(bool lowMemoryDevice);
34
35 MCAPI void cacheVisualTree(
36 ::std::unique_ptr<::VisualTree> screen,
37 ::std::shared_ptr<::UIControlFactory> factory,
38 ::std::unique_ptr<::LayoutManager> layoutManager
39 );
40
41 MCAPI ~CachedScenes();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(bool lowMemoryDevice);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCAPI void $dtor();
54 // NOLINTEND
55};
Definition CachedScenes.h:5
Definition LayoutManager.h:5
Definition TaskGroup.h:61
Definition UIControlFactory.h:5
Definition VisualTree.h:5
Definition CachedScene.h:5