cave-story-solaris/src/Triangle.h
Clownacy e3549f8703 Made Triangle.cpp ASM-accurate
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.
2019-02-21 23:24:23 +00:00

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);