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 // NOLINTEND
51
52public:
53 // member functions
54 // NOLINTBEGIN
55 MCAPI explicit GetCollisionShapeActorProxy(::Actor const& actor);
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCAPI void* $ctor(::Actor const& actor);
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCAPI float $getFeetAttachPosY() const;
68
69 MCAPI bool $canDescendThroughBlock() const;
70
71 MCAPI float $getFallDistance() const;
72
73 MCAPI ::ActorType $getEntityTypeId() const;
74
75 MCAPI bool $isWearingLeatherBoots() const;
76
77 MCAPI bool $hasLightWeightFamilyTag() const;
78
79 MCAPI bool $isWorldBuilder() const;
80
81 MCAPI ::AABB const& $getAABB() const;
82
83 MCAPI bool $isRiding() const;
84
85 MCAPI bool $hasPassenger() const;
86
87
88 // NOLINTEND
89
90public:
91 // vftables
92 // NOLINTBEGIN
93 MCAPI static void** $vftable();
94 // NOLINTEND
95};
Definition AABB.h:18
Definition Actor.h:125
Definition GetCollisionShapeInterface.h:13