mirror of
https://gitlab.com/banjo.decomp/banjo-kazooie
synced 2026-05-23 06:34:30 -04:00
8d06a8c72f
- Name variables and functions - Add description for functions - Refactor inflate.c to match the rest of the source files
12 lines
219 B
C
12 lines
219 B
C
#ifndef VARIABLES_H
|
|
#define VARIABLES_H
|
|
|
|
#define BAD_PI 3.141592654
|
|
#define BAD_DTOR (BAD_PI/ 180.0)
|
|
#define M_TAU (2*M_PI)
|
|
#define BAD_TAU 6.2831853
|
|
|
|
extern f32 climbPoleBottom[3];
|
|
extern f32 climbPoleTop[3];
|
|
#endif
|