mirror of
https://github.com/AxioDL/PrimeAPI.git
synced 2026-03-30 11:38:46 -07:00
9 lines
180 B
C++
9 lines
180 B
C++
#ifndef CAXISANGLE_HPP
|
|
#define CAXISANGLE_HPP
|
|
|
|
struct CAxisAngle : CVector3f
|
|
{
|
|
inline CAxisAngle(float x, float y, float z) : CVector3f(x, y, z) {}
|
|
};
|
|
|
|
#endif // CAXISANGLE_HPP
|