Panel is working and now I can work on the gui interactions parts.

This commit is contained in:
Zed A. Shaw 2024-11-11 13:03:31 -05:00
parent 9bc9c9007f
commit 6e848004c4
3 changed files with 4 additions and 1 deletions

View file

@ -193,6 +193,7 @@ void GUI::shake() {
int y = Random::uniform<int>(-20,20);
// add x/y back to draw screen
$renderer.draw_screen($map_view, x, y);
$renderer.display();
std::this_thread::sleep_for(1ms);
}
}