1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-08 19:56:45 +00:00

fundamental:: integrate with standard HyperRogue

This commit is contained in:
Zeno Rogue 2025-02-24 10:53:09 +01:00
parent 17d2830596
commit 98daaf3853
2 changed files with 6 additions and 0 deletions

@ -1169,6 +1169,11 @@ EX void showEuclideanMenu() {
dialog::addHelp(arb::current.comment);
}
if(WDIM == 2 && quotient && closed_manifold) {
dialog::addItem(XLAT("fundamental domain"), 'F');
dialog::add_action_push(fundamental::showMenu);
}
dialog::addSelItem(XLAT("size of the world"), gd.size_str, '3');
add_size_action();

@ -127,6 +127,7 @@
#include "vr.cpp"
#include "intra.cpp"
#include "crossbow.cpp"
#include "fundamental.cpp"
#if CAP_ROGUEVIZ
#include "rogueviz/rogueviz-all.cpp"