Files
mcpe/source/Base/HitResult.cpp
iProgramInCpp 9642818a88 * Initial commit.
:)
2023-07-30 22:22:02 +03:00

31 lines
658 B
C++

/********************************************************************
Minecraft: Pocket Edition - Decompilation Project
Copyright (C) 2023 iProgramInCpp
HitResult.cpp
The following code is licensed under the following license:
< no license yet :( >
********************************************************************/
#include "HitResult.hpp"
HitResult::HitResult() {}
HitResult::HitResult(int x, int y, int z, eHitSide hitSide, const Vec3& vec)
{
m_hitType = AABB;
m_hitSide = hitSide;
m_tileX = x;
m_tileY = y;
m_tileZ = z;
m_bUnk24 = false;
m_hitPos = vec;
}
HitResult::HitResult(Entity* pEnt)
{
m_hitType = ENTITY;
m_pEnt = pEnt;
}