LeviLamina
Loading...
Searching...
No Matches
MushroomCow.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
10class BlockPos;
11// clang-format on
12
13class MushroomCow : public ::Animal {
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 147
18 virtual bool checkSpawnRules(bool fromSpawner) /*override*/;
19
20 // vIndex: 171
21 virtual float _getWalkTargetValue(::BlockPos const& pos) /*override*/;
22
23 // vIndex: 8
24 virtual ~MushroomCow() /*override*/ = default;
25 // NOLINTEND
26
27public:
28 // destructor thunk
29 // NOLINTBEGIN
30
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCAPI bool $checkSpawnRules(bool fromSpawner);
37
38 MCAPI float $_getWalkTargetValue(::BlockPos const& pos);
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCAPI static void** $vftable();
45 // NOLINTEND
46};
Definition Animal.h:19
Definition BlockPos.h:18
Definition MushroomCow.h:13