mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 14:07:46 +00:00
18 lines
260 B
C
18 lines
260 B
C
![]() |
#ifndef _VECTOR3_H_
|
||
|
#define _VECTOR3_H_
|
||
|
|
||
|
namespace Sapphire
|
||
|
{
|
||
|
namespace Common
|
||
|
{
|
||
|
struct FFXIVARR_POSITION3
|
||
|
{
|
||
|
float x;
|
||
|
float y;
|
||
|
float z;
|
||
|
inline bool operator == ( const FFXIVARR_POSITION3& target ) const;
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|