LeviLamina
Loading...
Searching...
No Matches
BlendingData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/ScalarOptional.h"
7#include "mc/world/level/storage/BlendingBlockType.h"
8
9// auto generated forward declare list
10// clang-format off
11struct BiomeIdType;
12// clang-format on
13
14class BlendingData {
15public:
16 // member variables
17 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 BlendingData& operator=(BlendingData const&);
29 BlendingData(BlendingData const&);
30 BlendingData();
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCNAPI ::ScalarOptional<::BiomeIdType> getBiome(int cellX, int cellZ, int quartY) const;
36
37 MCNAPI ::BlendingBlockType getBlockType(int cellX, int cellZ, int cellY) const;
38
39 MCNAPI ::ScalarOptional<float> getDensity(int cellX, int cellZ, int cellY) const;
40
41 MCNAPI ::ScalarOptional<short> getHeight(int cellX, int cellZ) const;
42
43 MCNAPI bool hasBlendDataAt(int cellX, int cellZ) const;
44
45 MCNAPI ~BlendingData();
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53};
MCAPI void $dtor()
MCAPI::BlendingBlockType getBlockType(int cellX, int cellZ, int cellY) const
MCAPI ::ScalarOptional< float > getDensity(int cellX, int cellZ, int cellY) const
MCAPI ~BlendingData()
MCAPI ::ScalarOptional<::BiomeIdType > getBiome(int cellX, int cellZ, int quartY) const
MCAPI ::ScalarOptional< short > getHeight(int cellX, int cellZ) const
MCAPI bool hasBlendDataAt(int cellX, int cellZ) const
Definition BiomeIdType.h:8
Definition Alias.h:14