Height of this texture

Property definitions

sdl2 $ SDLTexture :: height
	# Height of this texture
	fun height: Int `{
		int val;
		SDL_QueryTexture(self, NULL, NULL, NULL, &val);
		return val;
	`}
lib/sdl2/sdl2_base.nit:462,2--467,3