Okay, so, I was thinking of making a small simulation with plants and rather than try to mess with sprites, I would use in-build draw functions. However, I could not find answer for this questions.
For the function DrawLine, is there anyway to set the width of the line, or is it always 1 pixel wide?
In short, let's say I want to draw a line that is 3 pixels wide, from coordinates 50,45 to 60,50. Can I somehow specify that the line needs to be 3 pixels wide, or do I need to draw 3 lines, one that goes straight from 50,45 -> 60, 50, one that goes 51,45 -> 61,45 and last one 49,45 -> 59,50?
Also, this was slightly unclear too, do I need to draw the line with each cycle, or can I draw it just once and it will stay on screen until I order its deletion.