forked from mirror/Archipelago
* Core: Launcher: can drag-and-drop patch on Launcher window * doc string for `_on_drop_file`
16 lines
330 B
Python
16 lines
330 B
Python
from typing import Callable, ClassVar
|
|
|
|
from kivy.event import EventDispatcher
|
|
|
|
|
|
class WindowBase(EventDispatcher):
|
|
width: ClassVar[int] # readonly AliasProperty
|
|
height: ClassVar[int] # readonly AliasProperty
|
|
|
|
@staticmethod
|
|
def bind(**kwargs: Callable[..., None]) -> None: ...
|
|
|
|
|
|
class Window(WindowBase):
|
|
...
|