LEL is able to position right/left/top/bottom and expand out too.

This commit is contained in:
Zed A. Shaw 2025-02-15 10:59:51 -05:00
parent 872cedc8e1
commit cebf61a794
4 changed files with 27 additions and 18 deletions

View file

@ -11,8 +11,8 @@ struct Cell {
int max_h = 0;
int col = 0;
int row = 0;
bool left = true;
bool top = true;
bool right = false;
bool bottom = false;
bool expand = false;
Cell(int col, int row) : col(col), row(row) {}