Minor fixes to make initializing the terminal more consistent and to remove a magic number for wall limits.

This commit is contained in:
Zed A. Shaw 2024-12-04 08:19:04 -05:00
parent 2d5490131d
commit ae43dad499
12 changed files with 47 additions and 42 deletions

View file

@ -67,4 +67,5 @@ struct SFMLRender {
int font_size() { return $map_font_size; }
void clear() { $window.clear(); }
void display() { $window.display(); }
static void init_terminal();
};