1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-11 14:56:00 +00:00

disabled run in non-hyperbolic, implemented in weird hyperbolic, disabled PMC in non-hyperbolic

This commit is contained in:
Zeno Rogue
2017-10-30 10:01:49 +01:00
parent 48361cc5e4
commit d2fc8b41ba
3 changed files with 25 additions and 8 deletions

View File

@@ -704,6 +704,14 @@ namespace netgen {
popScreen();
};
}
void run() {
if(euclid)
addMessage("Useless in Euclidean geometry.");
else if(sphere)
addMessage("Not implemented for spherical geometry.");
else
pushScreen(show);
}
}
#endif