mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
11 lines
274 B
Python
11 lines
274 B
Python
from vulkan.views.AbstractView import AbstractView
|
|
from vulkan.results import AbstractResult
|
|
|
|
|
|
class MessageView(AbstractView):
|
|
def __init__(self, result: AbstractResult) -> None:
|
|
super().__init__(result)
|
|
|
|
def run(self) -> None:
|
|
return super().run()
|