LeviLamina
Loading...
Searching...
No Matches
IPathBlockSource.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockPos;
8// clang-format on
9
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 virtual ~IPathBlockSource() = default;
15
16 virtual bool isInWater() const = 0;
17
18 virtual bool isInLava() const = 0;
19
20 virtual bool isWaterBlock(::BlockPos const&) const = 0;
21
22 virtual bool isLavaBlock(::BlockPos const&) const = 0;
23
24 virtual bool isSolidBlock(::BlockPos const&) const = 0;
25 // NOLINTEND
26
27public:
28 // virtual function thunks
29 // NOLINTBEGIN
30
31 // NOLINTEND
32
33public:
34 // vftables
35 // NOLINTBEGIN
36 MCNAPI static void** $vftable();
37 // NOLINTEND
38};
Definition BlockPos.h:19
Definition IPathBlockSource.h:10
static MCAPI void ** $vftable()