1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-20 12:20:01 +00:00

fixed some exports

This commit is contained in:
Zeno Rogue 2018-11-18 18:13:15 +01:00
parent fecd18b92b
commit 34cb90f97c

10
hyper.h
View File

@ -4177,7 +4177,14 @@ extern void calcTidalPhase();
void curvepoint(const hyperpoint& H1);
dqi_poly& queuecurve(color_t linecol, color_t fillcol, PPR prio);
ld cos_auto(ld x);
ld sin_auto(ld x);
ld tan_auto(ld x);
ld asin_auto(ld x);
ld atan_auto(ld x);
ld atan2_auto(ld x);
ld atan2(hyperpoint h);
namespace anims {
void apply();
@ -4396,6 +4403,9 @@ extern hookset<named_functionality()> *hooks_o_key;
named_functionality get_o_key();
hyperpoint nearcorner(cell *c, int i);
extern bool showquotients;
bool do_draw(cell *c, const transmatrix& T);
}