mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 00:27:44 +00:00
7 lines
214 B
C++
7 lines
214 B
C++
![]() |
#include "Vector3.h"
|
||
|
|
||
|
inline bool Sapphire::Common::FFXIVARR_POSITION3::operator == ( const FFXIVARR_POSITION3 & target ) const
|
||
|
{
|
||
|
return ( this->x == target.x && this->y == target.y && this->z == target.z );
|
||
|
}
|