mirror of
https://github.com/zeldaret/ss
synced 2026-06-07 11:57:48 -04:00
22 lines
536 B
C++
22 lines
536 B
C++
#ifndef NW4R_EF_UTIL
|
|
#define NW4R_EF_UTIL
|
|
#include "types_nw4r.h"
|
|
#include "ut_list.h"
|
|
|
|
namespace nw4r
|
|
{
|
|
namespace ef
|
|
{
|
|
typedef void (* Action)(void *, u32);
|
|
|
|
u16 UtlistToArray(const ut::List *, void **, int);
|
|
|
|
UNKTYPE GetDirMtxY(math::MTX34 *, const math::VEC3 &);
|
|
UNKTYPE MtxGetRotation(const math::MTX34 &, math::VEC3 *);
|
|
UNKTYPE MtxGetTranslate(const math::MTX34 &, math::VEC3 *);
|
|
UNKTYPE MtxGetRotationMtx(const math::MTX34 &, math::MTX34 *);
|
|
UNKTYPE MtxGetScale(const math::MTX34 &, math::VEC3 *);
|
|
}
|
|
}
|
|
|
|
#endif |