mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 14:37:44 +00:00
15 lines
No EOL
227 B
C++
15 lines
No EOL
227 B
C++
#ifndef _VECTOR3_H_
|
|
#define _VECTOR3_H_
|
|
|
|
namespace Sapphire::Common
|
|
{
|
|
struct FFXIVARR_POSITION3
|
|
{
|
|
float x;
|
|
float y;
|
|
float z;
|
|
inline bool operator == ( const FFXIVARR_POSITION3& target ) const;
|
|
};
|
|
}
|
|
|
|
#endif |