mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-30 16:17:46 +00:00
6 lines
189 B
C++
6 lines
189 B
C++
#include "Vector3.h"
|
|
|
|
inline bool Sapphire::Common::FFXIVARR_POSITION3::operator == ( const FFXIVARR_POSITION3& target ) const
|
|
{
|
|
return x == target.x && y == target.y && z == target.z;
|
|
}
|