Skip to content

Commit

Permalink
Tweak indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
iHiD committed Jan 14, 2025
1 parent 4486838 commit 886b06b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,28 @@ rectangle(sky_left, sky_top, sky_width, sky_height)

// The grass
fill_color_hex("#3cb372")
rectangle(0,80,100,100)
rectangle(0,80, 100, 100)

// The frame of the house
fill_color_hex("#f0985b")
rectangle(house_left,50,60,40)
rectangle(house_left,50, 60, 40)

// The roof
fill_color_hex("#8b4513")
triangle(roof_left,50, 50,30, 84,50)

// The left window
fill_color_hex("#FFFFFF")
rectangle(30,55,12,13)
rectangle(30,55, 12,13)

// The second window
fill_color_hex("#FFFFFF")
rectangle(58,55,12,13)
rectangle(58,55, 12, 13)

// The door
fill_color_hex("#A0512D")
rectangle(43,72,14,18)
rectangle(43,72, 14, 18)

// The door knob
fill_color_hex("#FFDF00")
circle(55,81,1)
circle(55,81, 1)

0 comments on commit 886b06b

Please sign in to comment.