mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-03 01:07:47 +00:00

- fix Common::Util::getOffsettedPosition - fix action timepoint getting stuck (todo: fix actions legit)
27 lines
510 B
C++
27 lines
510 B
C++
#pragma once
|
|
|
|
namespace Sapphire::Common
|
|
{
|
|
// todo: get rid of this struct and use an actual vector 3 class
|
|
struct FFXIVARR_POSITION3
|
|
{
|
|
float x;
|
|
float y;
|
|
float z;
|
|
inline bool operator == ( const FFXIVARR_POSITION3& target ) const;
|
|
};
|
|
|
|
struct Vector3
|
|
{
|
|
float x;
|
|
float y;
|
|
float z;
|
|
inline bool operator == ( const Vector3& target ) const;
|
|
inline bool operator == ( const FFXIVARR_POSITION3& target ) const;
|
|
};
|
|
|
|
struct Matrix33
|
|
{
|
|
float m[ 3 ][ 3 ];
|
|
};
|
|
}
|