AIprojekt-wozek/venv/Lib/site-packages/pygame/time.pyi
2022-03-10 19:45:28 +01:00

16 lines
484 B
Python

from typing import Union
from pygame.event import Event
def get_ticks() -> int: ...
def wait(milliseconds: int) -> int: ...
def delay(milliseconds: int) -> int: ...
def set_timer(event: Union[int, Event], millis: int, loops: int = 0) -> None: ...
class Clock:
def tick(self, framerate: int = 0) -> int: ...
def tick_busy_loop(self, framerate: int = 0) -> int: ...
def get_time(self) -> int: ...
def get_rawtime(self) -> int: ...
def get_fps(self) -> float: ...