init
This commit is contained in:
commit
38355d2442
9083 changed files with 1225834 additions and 0 deletions
15
.venv/lib/python3.8/site-packages/pygame/key.pyi
Normal file
15
.venv/lib/python3.8/site-packages/pygame/key.pyi
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
from typing import Sequence, Tuple
|
||||
|
||||
from ._common import _RectValue
|
||||
|
||||
def get_focused() -> bool: ...
|
||||
def get_pressed() -> Sequence[bool]: ...
|
||||
def get_mods() -> int: ...
|
||||
def set_mods(mods: int) -> None: ...
|
||||
def set_repeat(delay: int = 0, interval: int = 0) -> None: ...
|
||||
def get_repeat() -> Tuple[int, int]: ...
|
||||
def name(key: int) -> str: ...
|
||||
def key_code(name: str) -> int: ...
|
||||
def start_text_input() -> None: ...
|
||||
def stop_text_input() -> None: ...
|
||||
def set_text_input_rect(rect: _RectValue) -> None: ...
|
||||
Loading…
Add table
Add a link
Reference in a new issue