mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-11 05:14:21 -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_
|