Skip to content

Commit af87bc4

Browse files
types
1 parent 0dea589 commit af87bc4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

buildconfig/stubs/pygame/draw.pyi

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from pygame.rect import Rect
22
from pygame.surface import Surface
3+
from typing import Union
34

45
from ._common import ColorValue, Coordinate, RectValue, Sequence
56

@@ -68,3 +69,8 @@ def aalines(
6869
closed: bool,
6970
points: Sequence[Coordinate],
7071
) -> Rect: ...
72+
def flood_fill(
73+
surface: Surface,
74+
color: Union[ColorValue, Surface],
75+
start_point: Coordinate
76+
) -> Rect: ...

0 commit comments

Comments
 (0)