mirror of https://github.com/nmlgc/ReC98.git
7 lines
228 B
C++
7 lines
228 B
C++
|
// Slightly different parameter lists compared to later games!
|
||
|
void vector2(int &ret_x, int &ret_y, int length, unsigned char angle);
|
||
|
|
||
|
void vector2_between(
|
||
|
int x1, int y1, int x2, int y2, int& ret_x, int &ret_y, int length
|
||
|
);
|