mirror of
https://github.com/celisej567/mcpe.git
synced 2025-12-31 17:49:17 +03:00
45 lines
820 B
C++
45 lines
820 B
C++
/********************************************************************
|
|
Minecraft: Pocket Edition - Decompilation Project
|
|
Copyright (C) 2023 iProgramInCpp
|
|
|
|
The following code is licensed under the BSD 1 clause license.
|
|
SPDX-License-Identifier: BSD-1-Clause
|
|
********************************************************************/
|
|
|
|
#include "HitResult.hpp"
|
|
|
|
void HitResult::_init()
|
|
{
|
|
m_hitType = NONE;
|
|
// block coords?
|
|
m_tileX = 0;
|
|
m_tileY = 0;
|
|
m_tileZ = 0;
|
|
|
|
m_hitSide = MINY;
|
|
|
|
m_pEnt = nullptr;
|
|
m_bUnk24 = 0;
|
|
}
|
|
|
|
HitResult::HitResult(int x, int y, int z, eHitSide hitSide, const Vec3& vec)
|
|
{
|
|
_init();
|
|
|
|
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)
|
|
{
|
|
_init();
|
|
|
|
m_hitType = ENTITY;
|
|
m_pEnt = pEnt;
|
|
}
|