Clear the Screen

Use this when you want to fill the whole screen with a solid color at the start of each frame.

func (g *Game) Draw() {
	gosprite64.ClearScreenWith(gosprite64.DarkBlue)
}

This is the same pattern introduced in the beginner journey, but without the extra guided explanation.