mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-04 19:36:43 +03:00
31 lines
658 B
C++
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;
|
|
}
|