1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-03 01:07:47 +00:00
sapphire/src/common/Vector3.h
Tahir b38afc0256 add left/right to nudge command
- fix Common::Util::getOffsettedPosition
- fix action timepoint getting stuck (todo: fix actions legit)
2024-06-25 03:14:33 +01:00

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 ];
};
}