LeviLamina
Loading...
Searching...
No Matches
InBedScreenController.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
9// auto generated forward declare list
10// clang-format off
12class Player;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::Player&> mSleepingPlayer;
20 ::ll::TypedStorage<4, 4, int> mSleepingPlayerCount;
21 ::ll::TypedStorage<4, 4, int> mRequiredSleepingPlayerCount;
22 ::ll::TypedStorage<1, 1, bool> mIsAbleToSleep;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 InBedScreenController& operator=(InBedScreenController const&);
28 InBedScreenController(InBedScreenController const&);
29 InBedScreenController();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ~InBedScreenController() /*override*/ = default;
35
36 virtual ::ui::DirtyFlag tick() /*override*/;
37
38 virtual bool _isStillValid() const /*override*/;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI InBedScreenController(::std::shared_ptr<::ClientInstanceScreenModel> model, ::Player& player);
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor(::std::shared_ptr<::ClientInstanceScreenModel> model, ::Player& player);
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI ::ui::DirtyFlag $tick();
57
58 MCAPI bool $_isStillValid() const;
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
65
66 MCNAPI static void** $vftableForScreenController();
67 // NOLINTEND
68};
Definition ClientInstanceScreenController.h:5
Definition ClientInstanceScreenModel.h:5
Definition InBedScreenController.h:5
static MCAPI void ** $vftableForScreenController()
static MCAPI void ** $vftableForEnableNonOwnerReferences()
Definition Player.h:129