LeviLamina
Loading...
Searching...
No Matches
DetectionRule.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/legacy/Facing.h"
7#include "mc/world/level/block/BlockedDirections.h"
8#include "mc/world/level/block/LiquidReaction.h"
9#include "mc/world/level/block/LiquidType.h"
10
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<1, 1, bool> mCanContainLiquid;
16 ::ll::TypedStorage<1, 1, ::BlockedDirections> mStopsFlowDirections;
17 ::ll::TypedStorage<1, 1, ::LiquidReaction> mOnLiquidTouches;
18 ::ll::TypedStorage<1, 1, ::LiquidType> mLiquidType;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI DetectionRule(
29 ::LiquidType liquidType,
30 bool canContainLiquid,
31 ::LiquidReaction onLiquidTouches,
32 ::std::vector<::SharedTypes::Facing> const& stopsWaterFlowingOutFromDirections
33 );
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(
40 ::LiquidType liquidType,
41 bool canContainLiquid,
42 ::LiquidReaction onLiquidTouches,
43 ::std::vector<::SharedTypes::Facing> const& stopsWaterFlowingOutFromDirections
44 );
45 // NOLINTEND
46};
Definition DetectionRule.h:11