1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

translation of Goldberg helptext

This commit is contained in:
Zeno Rogue 2018-05-20 15:15:38 +02:00
parent 8872c79cae
commit 09b6eb8261

View File

@ -561,12 +561,13 @@ namespace gp {
}
string helptext() {
return
return XLAT(
"Goldberg polyhedra are obtained by adding extra hexagons to a dodecahedron. "
"GP(x,y) means that, to get to a nearest non-hex from any non-hex, you should move x "
"cells in any direction, turn right 60 degrees, and move y cells. "
"HyperRogue generalizes this to any tesselation with 3 faces per vertex. "
"By default HyperRogue uses bitruncation, which corresponds to GP(1,1).";
"By default HyperRogue uses bitruncation, which corresponds to GP(1,1)."
);
}
void show(bool texture_remap) {