Super Mario 64s source code (from a leak on 4chan so be careful)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
179 B

#ifndef _MATH_H_
#define _MATH_H_
#define M_PI 3.14159265358979323846
float sinf(float);
double sin(double);
float cosf(float);
double cos(double);
float sqrtf(float);
#endif