mirror of
https://github.com/pret/pmd-sky.git
synced 2026-07-24 12:30:35 -05:00
8 lines
215 B
C
8 lines
215 B
C
#ifndef NITRO_FX_FX_VEC_H_
|
|
#define NITRO_FX_FX_VEC_H_
|
|
|
|
void VEC_Add(const VecFx32 *a, const VecFx32 *b, VecFx32 *ab);
|
|
void VEC_Subtract(const VecFx32 *a, const VecFx32 *b, VecFx32 *ab);
|
|
|
|
#endif //NITRO_FX_FX_VEC_H_
|