LeviLamina
Loading...
Searching...
No Matches
Sheep.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorEvent.h"
7#include "mc/world/actor/animal/Animal.h"
8
9class Sheep : public ::Animal {
10public:
11 // member variables
12 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 Sheep& operator=(Sheep const&);
19 Sheep(Sheep const&);
20 Sheep();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 69
26 virtual void handleEntityEvent(::ActorEvent eventId, int data) /*override*/;
27
28 // vIndex: 8
29 virtual ~Sheep() /*override*/ = default;
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCAPI static void** $vftable();
48 // NOLINTEND
49};
Definition Animal.h:19
Definition Sheep.h:9
Definition Alias.h:14