LeviLamina
Loading...
Searching...
No Matches
IVanillaTickBlockActorComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/actor/BlockActorType.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockActor;
11class BlockPos;
12class BlockSource;
13// clang-format on
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ::BlockActor& getBlockActor() = 0;
20
21 virtual ::BlockActor const& getBlockActor() const = 0;
22
23 virtual ::BlockPos const& getBlockActorPosition() const = 0;
24
25 virtual ::BlockActorType getBlockActorType() const = 0;
26
27 virtual void tick(::BlockSource& region) = 0;
28
29 virtual int getTickCount() const = 0;
30 // NOLINTEND
31};
Definition BlockActor.h:27
Definition BlockPos.h:21
Definition BlockSource.h:71
Definition IVanillaTickBlockActorComponent.h:15