diff options
| author | robojumper <robojumper@gmail.com> | 2024-09-28 02:01:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-27 20:01:18 -0400 |
| commit | d35fb6db76536528c5bfd314dca026a7f066dadb (patch) | |
| tree | 0fd6c6f7be52c6f48f752f6148714731dca5ceeb /include/c | |
| parent | 3829ee6d4854a18bb6c19ffd1e250632946c0206 (diff) | |
Attention (#35)
* attention
* Header
* These were meant to be public
* fixup merge
---------
Co-authored-by: elijah-thomas774 <elijahthomas774@gmail.com>
Diffstat (limited to 'include/c')
| -rw-r--r-- | include/c/c_lib.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/c/c_lib.h b/include/c/c_lib.h new file mode 100644 index 00000000..823955aa --- /dev/null +++ b/include/c/c_lib.h @@ -0,0 +1,13 @@ +#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); + +} // namespace cLib + +#endif |
