Have a few basic monochrome test items and the first little leather pouches on the 'tool belt'.

This commit is contained in:
Zed A. Shaw 2025-03-23 11:34:50 -04:00
parent d7ff7d6acf
commit 5af9a6664e
27 changed files with 41 additions and 28 deletions

View file

@ -170,11 +170,12 @@ namespace guecs {
shared_ptr<sf::RectangleShape> shape = nullptr;
Background(lel::Parser& parser) :
Background(lel::Parser& parser, sf::Color bg_color=GUECS_BG_COLOR) :
x(parser.grid_x),
y(parser.grid_y),
w(parser.grid_w),
h(parser.grid_h)
h(parser.grid_h),
color(bg_color)
{}
Background() {}