1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-03 01:07:47 +00:00
sapphire/src/common/Vector3.cpp

14 lines
363 B
C++
Raw Normal View History

2019-02-06 11:12:29 +01:00
#include "Vector3.h"
using namespace Sapphire::Common;
inline bool FFXIVARR_POSITION3::operator == ( const FFXIVARR_POSITION3& target ) const
2019-02-06 11:12:29 +01:00
{
2019-02-06 12:01:33 +01:00
return x == target.x && y == target.y && z == target.z;
2019-02-06 11:12:29 +01:00
}
inline bool Vector3::operator == ( const Vector3& target ) const
{
return x == target.x && y == target.y && z == target.z && reserve == target.reserve;
}