mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
* Initial commit.
:)
This commit is contained in:
30
source/Base/HitResult.cpp
Normal file
30
source/Base/HitResult.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
/********************************************************************
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user