mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -04:00
2ecf6509dd
* begin work * fixup modifications to d_a_base header * progress * update from main again (forgor to fetch) * progress * Basically done * clean up some inlines * some at/tg hit typing and tubo naming * more naming
15 lines
280 B
C++
15 lines
280 B
C++
#ifndef C_CLIB_H
|
|
#define C_CLIB_H
|
|
|
|
#include "common.h"
|
|
#include "m/m_vec.h"
|
|
|
|
namespace cLib {
|
|
|
|
s32 targetAngleY(const mVec3_c &target, const mVec3_c &source);
|
|
f32 addCalcPosXZ(mVec3_c *src, const mVec3_c &target, f32 scale, f32 maxStep, f32 minStep);
|
|
|
|
} // namespace cLib
|
|
|
|
#endif
|