We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dea589 commit af87bc4Copy full SHA for af87bc4
buildconfig/stubs/pygame/draw.pyi
@@ -1,5 +1,6 @@
1
from pygame.rect import Rect
2
from pygame.surface import Surface
3
+from typing import Union
4
5
from ._common import ColorValue, Coordinate, RectValue, Sequence
6
@@ -68,3 +69,8 @@ def aalines(
68
69
closed: bool,
70
points: Sequence[Coordinate],
71
) -> Rect: ...
72
+def flood_fill(
73
+ surface: Surface,
74
+ color: Union[ColorValue, Surface],
75
+ start_point: Coordinate
76
+) -> Rect: ...
0 commit comments