mirror of
https://github.com/encounter/zeus.git
synced 2026-03-30 11:44:38 -07:00
dafc850598
Trims out unused headers and ensures the necessary includes are included.
17 lines
327 B
C++
17 lines
327 B
C++
#pragma once
|
|
|
|
#include "zeus/CVector3f.hpp"
|
|
|
|
namespace zeus {
|
|
class CQuaternion;
|
|
class CTransform;
|
|
|
|
class CEulerAngles : public CVector3f {
|
|
public:
|
|
constexpr CEulerAngles(float x, float y, float z) : CVector3f(x, y, z) {}
|
|
CEulerAngles(const CQuaternion& quat);
|
|
CEulerAngles(const CTransform& xf);
|
|
};
|
|
|
|
} // namespace zeus
|