1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 14:37:44 +00:00
sapphire/src/common/Vector3.h
2019-02-06 12:01:33 +01:00

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