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
23 using DataFlagIdType = schar;
24
25public:
26 // prevent constructor by default
27 Spider();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual bool canBeAffected(uint effectId) const /*override*/;
33
34 virtual float getModelScale() const;
35
36 virtual float getShadowRadius() const /*override*/;
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 // virtual function thunks
61 // NOLINTBEGIN
62 MCAPI bool $canBeAffected(uint effectId) const;
63
64 MCFOLD float $getModelScale() const;
65
66 MCFOLD float $getShadowRadius() const;
67
68
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCAPI static void** $vftable();
75 // NOLINTEND
76};
Definition ActorDefinitionGroup.h:37
Definition EntityContext.h:17
Definition ActorDefinitionIdentifier.h:15