init
This commit is contained in:
commit
38355d2442
9083 changed files with 1225834 additions and 0 deletions
20
.venv/lib/python3.8/site-packages/pygame/music.pyi
Normal file
20
.venv/lib/python3.8/site-packages/pygame/music.pyi
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
from typing import Optional
|
||||
|
||||
from ._common import _FileArg
|
||||
|
||||
def load(filename: _FileArg, namehint: Optional[str] = "") -> None: ...
|
||||
def unload() -> None: ...
|
||||
def play(loops: int = 0, start: float = 0.0, fade_ms: int = 0) -> None: ...
|
||||
def rewind() -> None: ...
|
||||
def stop() -> None: ...
|
||||
def pause() -> None: ...
|
||||
def unpause() -> None: ...
|
||||
def fadeout(time: int) -> None: ...
|
||||
def set_volume(volume: float) -> None: ...
|
||||
def get_volume() -> float: ...
|
||||
def get_busy() -> bool: ...
|
||||
def set_pos(pos: float) -> None: ...
|
||||
def get_pos() -> int: ...
|
||||
def queue(filename: _FileArg, namehint: str = "", loops: int = 0) -> None: ...
|
||||
def set_endevent(event_type: int) -> None: ...
|
||||
def get_endevent() -> int: ...
|
||||
Loading…
Add table
Add a link
Reference in a new issue