mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 04:01:32 -06:00
10 lines
158 B
Python
10 lines
158 B
Python
import io
|
|
|
|
from kivy.graphics.texture import Texture
|
|
|
|
|
|
class CoreImage:
|
|
texture: Texture
|
|
|
|
def __init__(self, data: io.BytesIO, ext: str) -> None: ...
|