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