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

15 lines
227 B
C
Raw Normal View History

2019-02-06 11:12:29 +01:00
#ifndef _VECTOR3_H_
#define _VECTOR3_H_
2019-02-06 12:01:33 +01:00
namespace Sapphire::Common
2019-02-06 11:12:29 +01:00
{
2019-02-06 12:01:33 +01:00
struct FFXIVARR_POSITION3
2019-02-06 11:12:29 +01:00
{
2019-02-06 12:01:33 +01:00
float x;
float y;
float z;
inline bool operator == ( const FFXIVARR_POSITION3& target ) const;
};
2019-02-06 11:12:29 +01:00
}
#endif