1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-06-09 09:54:06 +00:00

changed the default 'how' to 8

This commit is contained in:
Zeno Rogue 2020-02-17 10:33:56 +01:00
parent 8c87f123a0
commit d673ae41b7

View File

@ -27,7 +27,7 @@ hyperpoint operator+(hyperpoint x) { return x; }
int shape = 1; int shape = 1;
// how many cubes to subdivide edges to // how many cubes to subdivide edges to
int how = 4; int how = 8;
// how many cubes to draw (should be smaller than how because they are not really cubes and thus they get into each other) // how many cubes to draw (should be smaller than how because they are not really cubes and thus they get into each other)
int how1 = how - 1; int how1 = how - 1;