LeviLamina
Loading...
Searching...
No Matches
CaveSpider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/monster/Spider.h"
7
8class CaveSpider : public ::Spider {
9public:
10 // virtual functions
11 // NOLINTBEGIN
12 virtual float getModelScale() const /*override*/;
13
14 virtual void getDebugText(::std::vector<::std::string>& outputInfo) /*override*/;
15
16 virtual ~CaveSpider() /*override*/ = default;
17 // NOLINTEND
18
19public:
20 // virtual function thunks
21 // NOLINTBEGIN
22 MCAPI float $getModelScale() const;
23
24 MCAPI void $getDebugText(::std::vector<::std::string>& outputInfo);
25
26
27 // NOLINTEND
28
29public:
30 // vftables
31 // NOLINTBEGIN
32 MCAPI static void** $vftable();
33 // NOLINTEND
34};
Definition CaveSpider.h:8