1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-25 05:57:45 +00:00
sapphire/src/common/Vector3.h
2024-06-26 20:50:12 +02:00

28 lines
524 B
C++

#pragma once
namespace Sapphire::Common
{
struct FFXIVARR_POSITION3
{
float x;
float y;
float z;
inline bool operator == ( const FFXIVARR_POSITION3& target ) const;
FFXIVARR_POSITION3 operator - ( const FFXIVARR_POSITION3& target ) const;
};
struct Vector3
{
float x;
float y;
float z;
float reserve;
inline bool operator == ( const Vector3& target ) const;
Vector3 operator - ( const Vector3& target ) const;
};
struct Matrix33
{
float m[ 3 ][ 3 ];
};
}