LeviLamina
Loading...
Searching...
No Matches
RotationUtil.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/Rotation.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class Random;
12// clang-format on
13
14namespace RotationUtil {
15// functions
16// NOLINTBEGIN
17MCNAPI ::Rotation getRandomRotation(::Random& random);
18
19MCNAPI ::Rotation getRotated(::Rotation original, ::Rotation rotation);
20
21MCNAPI ::BlockPos rotate(::BlockPos const& source, ::Rotation rotation);
22
23MCNAPI uchar rotate(::Rotation source, uchar direction);
24// NOLINTEND
25
26} // namespace RotationUtil
Definition BlockPos.h:21
Definition Random.h:10