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 virtual bool checkSpawnRules(bool fromSpawner) /*override*/;
18
19 virtual float _getWalkTargetValue(::BlockPos const& pos) /*override*/;
20
21 virtual ~MushroomCow() /*override*/ = default;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27 MCAPI bool $checkSpawnRules(bool fromSpawner);
28
29 MCAPI float $_getWalkTargetValue(::BlockPos const& pos);
30
31
32 // NOLINTEND
33
34public:
35 // vftables
36 // NOLINTBEGIN
37 MCAPI static void** $vftable();
38 // NOLINTEND
39};
Definition BlockPos.h:19
Definition MushroomCow.h:13