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

RogueViz adjustments

This commit is contained in:
Zeno Rogue
2019-09-13 18:46:08 +02:00
parent 09ff50ba45
commit 2400a2f1dc
2 changed files with 10 additions and 4 deletions

View File

@@ -19,6 +19,8 @@ namespace hr {
namespace hybrid { extern hrmap *pmap; }
namespace qtm {
color_t rcolor() {
color_t res;
part(res, 0) = hrand(0x80);
@@ -85,7 +87,9 @@ int args() {
auto magichook = addHook(hooks_drawcell, 100, may_set_cell)
auto hooks = addHook(hooks_drawcell, 100, may_set_cell)
+ addHook(hooks_args, 100, args);
}
}