LeviLamina
Loading...
Searching...
No Matches
GetCollisionShapeActorProxy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorType.h"
7#include "mc/world/level/block/GetCollisionShapeInterface.h"
8
9// auto generated forward declare list
10// clang-format off
11class AABB;
12class Actor;
13// clang-format on
14
15class GetCollisionShapeActorProxy : public ::GetCollisionShapeInterface {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::Actor const&> mActor;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 GetCollisionShapeActorProxy& operator=(GetCollisionShapeActorProxy const&);
25 GetCollisionShapeActorProxy(GetCollisionShapeActorProxy const&);
26 GetCollisionShapeActorProxy();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual float getFeetAttachPosY() const /*override*/;
32
33 virtual bool canDescendThroughBlock() const /*override*/;
34
35 virtual float getFallDistance() const /*override*/;
36
37 virtual ::ActorType getEntityTypeId() const /*override*/;
38
39 virtual bool isWearingLeatherBoots() const /*override*/;
40
41 virtual bool hasLightWeightFamilyTag() const /*override*/;
42
43 virtual bool isWorldBuilder() const /*override*/;
44
45 virtual ::AABB const& getAABB() const /*override*/;
46
47 virtual bool isRiding() const /*override*/;
48
49 virtual bool hasPassenger() const /*override*/;
50
51 virtual ~GetCollisionShapeActorProxy() /*override*/ = default;
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI float $getFeetAttachPosY() const;
58
59 MCAPI bool $canDescendThroughBlock() const;
60
61 MCAPI float $getFallDistance() const;
62
63 MCAPI ::ActorType $getEntityTypeId() const;
64
65 MCAPI bool $isWearingLeatherBoots() const;
66
67 MCAPI bool $hasLightWeightFamilyTag() const;
68
69 MCAPI bool $isWorldBuilder() const;
70
71 MCAPI ::AABB const& $getAABB() const;
72
73 MCAPI bool $isRiding() const;
74
75 MCAPI bool $hasPassenger() const;
76
77
78 // NOLINTEND
79
80public:
81 // vftables
82 // NOLINTBEGIN
83 MCAPI static void** $vftable();
84 // NOLINTEND
85};
Definition AABB.h:18
Definition Actor.h:105
Definition GetCollisionShapeInterface.h:13