2024-01-14 06:31:13 -08:00
|
|
|
""" FillType_* is not a real kivy type - just something to fill unknown typing. """
|
|
|
|
|
|
|
|
|
|
from typing import Sequence
|
|
|
|
|
|
|
|
|
|
FillType_Vec = Sequence[int]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class FillType_Drawable:
|
|
|
|
|
def __init__(self, *, pos: FillType_Vec = ..., size: FillType_Vec = ...) -> None: ...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Texture:
|
2024-03-03 07:23:02 -08:00
|
|
|
size: FillType_Vec
|