1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-25 14:07:46 +00:00
sapphire/src/common/Vector3.h

18 lines
260 B
C
Raw Normal View History

2019-02-06 11:12:29 +01:00
#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