LeviLamina
Loading...
Searching...
No Matches
Spider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/monster/Monster.h"
7
8// auto generated forward declare list
9// clang-format off
11class EntityContext;
13// clang-format on
14
15class Spider : public ::Monster {
16public:
17 // Spider inner types define
18 enum class Type : int {
19 Normal = 0,
20 Cave = 1,
21 };
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 105
27 virtual bool canBeAffected(uint id) const /*override*/;
28
29 // vIndex: 178
30 virtual float getModelScale() const;
31
32 // vIndex: 35
33 virtual float getShadowRadius() const /*override*/;
34
35 // vIndex: 8
36 virtual ~Spider() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI Spider(
43 ::ActorDefinitionGroup* definitions,
44 ::ActorDefinitionIdentifier const& definitionName,
45 ::EntityContext& entityContext
46 );
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(
53 ::ActorDefinitionGroup* definitions,
54 ::ActorDefinitionIdentifier const& definitionName,
55 ::EntityContext& entityContext
56 );
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI bool $canBeAffected(uint id) const;
69
70 MCFOLD float $getModelScale() const;
71
72 MCFOLD float $getShadowRadius() const;
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCAPI static void** $vftable();
79 // NOLINTEND
80};
Definition ActorDefinitionGroup.h:27
Definition EntityContext.h:16
Definition Monster.h:19
Definition Spider.h:15
Definition ActorDefinitionIdentifier.h:13