1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-22 01:17:39 +00:00

extra features related to expansion

This commit is contained in:
Zeno Rogue
2018-09-21 19:51:13 +02:00
parent 12a2a78d8a
commit c1de923454
5 changed files with 226 additions and 103 deletions

14
hyper.h
View File

@@ -2170,7 +2170,7 @@ namespace linepatterns {
patPalace,
patZebraTriangles,
patZebraLines,
patTriNet,
patTriTree,
patTriRings,
patHepta,
patRhomb,
@@ -2182,7 +2182,9 @@ namespace linepatterns {
patTrihepta,
patBigTriangles,
patBigRings,
patHorocycles
patHorocycles,
patTriOther,
patDual
};
void clearAll();
@@ -2190,6 +2192,14 @@ namespace linepatterns {
void drawAll();
void showMenu();
void switchAlpha(ePattern id, color_t col);
struct linepattern {
int id;
const char *lpname;
color_t color;
};
extern linepattern patterns[];
};
transmatrix ddspin(cell *c, int d, ld bonus = 0);