Set this instance's x, y, w and h

Property definitions

sdl2 $ SDLRect :: set
	# Set this instance's `x`, `y`, `w` and `h`
	fun set(x, y, w, h: Int)
	do
		self.x = x
		self.y = y
		self.w = w
		self.h = h
	end
lib/sdl2/sdl2_base.nit:490,2--497,4