Set this instance's r, g, b and a

Property definitions

sdl2 $ SDLColor :: set
	# Set this instance's `r`, `g`, `b` and `a`
	fun set(r, g, b, a: Int)
	do
		self.r = r
		self.g = g
		self.b = b
		self.a = a
	end
lib/sdl2/sdl2_base.nit:341,2--348,4