projektAI/venv/Lib/site-packages/pygame/time.pyi
2021-06-06 22:13:05 +02:00

17 lines
519 B
Python

from typing import Optional, 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: Optional[int] = 0) -> int: ...
def tick_busy_loop(self, framerate: Optional[int] = 0) -> int: ...
def get_time(self) -> int: ...
def get_rawtime(self) -> int: ...
def get_fps(self) -> float: ...