mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
15 lines
256 B
Python
15 lines
256 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class AbstractView(ABC):
|
|
@abstractmethod
|
|
async def update(self) -> None:
|
|
pass
|
|
|
|
def set_message(self, message) -> None:
|
|
pass
|
|
|
|
@abstractmethod
|
|
def stopView(self) -> None:
|
|
pass
|