
It's really starting to look more and more like Pixel really did write in C90... just look at the declarations I have to shove at the start of the functions.
8 lines
144 B
C
8 lines
144 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
void InitTriangleTable();
|
|
int GetSin(uint8_t deg);
|
|
int GetCos(uint8_t deg);
|
|
uint8_t GetArktan(int x, int y);
|