Files
MementoMori/kivy/core/video/video_null.py
thatscringebro abd15f28b6 Ajout du GUI
2022-08-08 16:31:52 -04:00

13 lines
224 B
Python

'''
VideoNull: empty implementation of VideoBase for the no provider case
'''
from kivy.core.video import VideoBase
class VideoNull(VideoBase):
'''VideoBase implementation when there is no provider.
'''
pass