LeviLamina
Loading...
Searching...
No Matches
ActorInWallDetectionComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // ActorInWallDetectionComponent inner types define
8 enum class DetectionType : int {
9 Default = 0,
10 Shulker = 1,
11 };
12
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<4, 4, ::ActorInWallDetectionComponent::DetectionType> mDetectionType;
17 ::ll::TypedStorage<1, 1, bool> mWasInWallLastTick;
18 ::ll::TypedStorage<4, 4, int> mTicksInWall;
19 // NOLINTEND
20};
Definition Shulker.h:27
Definition ActorInWallDetectionComponent.h:5