LeviLamina
Loading...
Searching...
No Matches
Camel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/animal/Animal.h"
7
8// auto generated forward declare list
9// clang-format off
11class EntityContext;
12class Vec3;
14// clang-format on
15
16class Camel : public ::Animal {
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 Camel& operator=(Camel const&);
28 Camel(Camel const&);
29 Camel();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 145
35 virtual void aiStep() /*override*/;
36
37 // vIndex: 24
38 virtual void normalTick() /*override*/;
39
40 // vIndex: 17
41 virtual ::Vec3 getInterpolatedRidingOffset(float, int const) const /*override*/;
42
43 // vIndex: 8
44 virtual ~Camel() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCAPI Camel(
51 ::ActorDefinitionGroup* definitions,
52 ::ActorDefinitionIdentifier const& definitionName,
53 ::EntityContext& entityContext
54 );
55
56 MCAPI void _monitorSitting();
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62 MCAPI void* $ctor(
63 ::ActorDefinitionGroup* definitions,
64 ::ActorDefinitionIdentifier const& definitionName,
65 ::EntityContext& entityContext
66 );
67 // NOLINTEND
68
69public:
70 // destructor thunk
71 // NOLINTBEGIN
72
73 // NOLINTEND
74
75public:
76 // virtual function thunks
77 // NOLINTBEGIN
78 MCAPI void $aiStep();
79
80 MCAPI void $normalTick();
81
82 MCAPI ::Vec3 $getInterpolatedRidingOffset(float, int const) const;
83 // NOLINTEND
84
85public:
86 // vftables
87 // NOLINTBEGIN
88 MCAPI static void** $vftable();
89 // NOLINTEND
90};
Definition ActorDefinitionGroup.h:27
Definition Animal.h:19
Definition Camel.h:16
Definition EntityContext.h:16
Definition Vec3.h:10
Definition ActorDefinitionIdentifier.h:13
Definition Alias.h:14