LeviLamina
Loading...
Searching...
No Matches
EDUPlayScreenController.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/SceneType.h"
8#include "mc/client/gui/screens/controllers/MainMenuScreenController.h"
9#include "mc/client/library/EduDeeplinkObserver.h"
10
11// auto generated forward declare list
12// clang-format off
14class PlayScreenModel;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 32, ::std::string> mJoincode;
22 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::PlayScreenModel>> mPlayScreenModel;
23 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::JoincodeEntryScreenController>> mJoincodeScreenController;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 EDUPlayScreenController();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual void onEntered() /*override*/;
34
35 virtual void onOpen() /*override*/;
36
37 virtual ::ui::DirtyFlag tick() /*override*/;
38
39 virtual ::ui::SceneType getSceneType() const /*override*/;
40
41 virtual bool onJoincodeReceived(::std::string const& encodedJoincode) /*override*/;
42
43 virtual ~EDUPlayScreenController() /*override*/;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCAPI EDUPlayScreenController(::std::shared_ptr<::PlayScreenModel> model, ::std::string encodedJoincode);
50
51 MCAPI void _registerEventHandlers();
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCAPI void* $ctor(::std::shared_ptr<::PlayScreenModel> model, ::std::string encodedJoincode);
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63 MCAPI void $dtor();
64 // NOLINTEND
65
66public:
67 // virtual function thunks
68 // NOLINTBEGIN
69 MCAPI void $onEntered();
70
71 MCAPI void $onOpen();
72
73 MCAPI ::ui::DirtyFlag $tick();
74
75 MCFOLD ::ui::SceneType $getSceneType() const;
76
77 MCAPI bool $onJoincodeReceived(::std::string const& encodedJoincode);
78 // NOLINTEND
79
80public:
81 // vftables
82 // NOLINTBEGIN
84
85 MCNAPI static void** $vftableForScreenController();
86
87 MCNAPI static void** $vftable();
88 // NOLINTEND
89};
Definition EDUPlayScreenController.h:5
static MCAPI void ** $vftableForScreenController()
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI void ** $vftable()
Definition EduDeeplinkObserver.h:5
Definition JoincodeEntryScreenController.h:5
Definition MainMenuScreenController.h:5
Definition PlayScreenModel.h:5