1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-02 02:37:55 +00:00

rogueviz::fundamental::more CLI options

This commit is contained in:
Zeno Rogue
2025-02-23 20:55:07 +01:00
parent cee9bb5d3b
commit d185c11c8b

View File

@@ -294,6 +294,9 @@ int readArgs() {
using namespace arg; using namespace arg;
if(0) ; if(0) ;
else if(argis("-fundamental0")) {
enable_fundamental();
}
else if(argis("-fundamental")) { else if(argis("-fundamental")) {
shift(); funmode = argi(); shift(); funmode = argi();
shift(); color1 = arghex(); shift(); color1 = arghex();
@@ -303,6 +306,10 @@ int readArgs() {
shift_arg_formula(label_dist); shift_arg_formula(label_dist);
enable_fundamental(); enable_fundamental();
} }
else if(argis("-fundamental-more")) {
shift(); single_edges = argi();
shift(); fill_faces = argi();
}
else return 1; else return 1;
return 0; return 0;
} }