Set the drawing color

Property definitions

sdl2 $ SDLRenderer :: draw_color=
	# Set the drawing color
	fun draw_color=(val: SDLColor) `{
		SDL_SetRenderDrawColor(self, val->r, val->g, val->b, val->a);
	`}
lib/sdl2/sdl2_base.nit:276,2--279,3