Final exam version

This commit is contained in:
2026-06-26 10:40:09 +03:00
commit 3e593aea3e
5224 changed files with 535773 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from typing import Tuple
import numpy
from pygame.mixer import Sound
def array(sound: Sound) -> numpy.ndarray: ...
def samples(sound: Sound) -> numpy.ndarray: ...
def make_sound(array: numpy.ndarray) -> Sound: ...
def use_arraytype(arraytype: str) -> Sound: ...
def get_arraytype() -> str: ...
def get_arraytypes() -> Tuple[str]: ...