LeviLamina
Loading...
Searching...
No Matches
BlockScreenController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/screens/controllers/ClientInstanceScreenController.h"
7#include "mc/legacy/ActorUniqueID.h"
8#include "mc/world/level/BlockPos.h"
9#include "mc/world/level/block/actor/BlockActorType.h"
10
11// auto generated forward declare list
12// clang-format off
13class BlockActor;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<1, 1, ::BlockActorType> mBlockEntityType;
22 ::ll::TypedStorage<4, 12, ::BlockPos> mBlockPos;
23 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mEntityUniqueID;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 BlockScreenController();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~BlockScreenController() /*override*/;
34
35 virtual void setAssociatedBlockPos(::BlockPos const& pos) /*override*/;
36
37 virtual void setAssociatedEntityUniqueID(::ActorUniqueID const uniqueID) /*override*/;
38
39 virtual bool _isStillValid() const /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCAPI BlockScreenController(
46 ::std::shared_ptr<::ClientInstanceScreenModel> model,
47 ::BlockPos const& pos,
48 ::BlockActorType type,
49 ::ActorUniqueID uniqueID
50 );
51
52 MCAPI ::BlockActor* _getBaseBlockEntity(::BlockPos const& pos, ::BlockActorType const& type) const;
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCAPI void* $ctor(
59 ::std::shared_ptr<::ClientInstanceScreenModel> model,
60 ::BlockPos const& pos,
61 ::BlockActorType type,
62 ::ActorUniqueID uniqueID
63 );
64 // NOLINTEND
65
66public:
67 // destructor thunk
68 // NOLINTBEGIN
69 MCAPI void $dtor();
70 // NOLINTEND
71
72public:
73 // virtual function thunks
74 // NOLINTBEGIN
75 MCAPI void $setAssociatedBlockPos(::BlockPos const& pos);
76
77 MCAPI void $setAssociatedEntityUniqueID(::ActorUniqueID const uniqueID);
78
79 MCAPI bool $_isStillValid() const;
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
86
87 MCNAPI static void** $vftableForScreenController();
88 // NOLINTEND
89};
Definition BlockActor.h:30
Definition BlockScreenController.h:5
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI void ** $vftableForScreenController()
Definition ClientInstanceScreenController.h:5
Definition ClientInstanceScreenModel.h:5