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 // prevent constructor by default
25 Spider();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 105
31 virtual bool canBeAffected(uint id) const /*override*/;
32
33 // vIndex: 178
34 virtual float getModelScale() const;
35
36 // vIndex: 35
37 virtual float getShadowRadius() const /*override*/;
38
39 // vIndex: 8
40 virtual ~Spider() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI Spider(
47 ::ActorDefinitionGroup* definitions,
48 ::ActorDefinitionIdentifier const& definitionName,
49 ::EntityContext& entityContext
50 );
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCAPI void* $ctor(
57 ::ActorDefinitionGroup* definitions,
58 ::ActorDefinitionIdentifier const& definitionName,
59 ::EntityContext& entityContext
60 );
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCAPI bool $canBeAffected(uint id) const;
67
68 MCFOLD float $getModelScale() const;
69
70 MCFOLD float $getShadowRadius() const;
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCNAPI static void** $vftable();
77 // NOLINTEND
78};
Definition ActorDefinitionGroup.h:29
Definition EntityContext.h:16
Definition Monster.h:19
Definition Spider.h:15
static MCAPI void ** $vftable()
Definition ActorDefinitionIdentifier.h:15