mirror of
https://github.com/Febbweiss/mopidy-touchscreen.git
synced 2026-03-04 22:25:39 +00:00
Base Screen class
This commit is contained in:
16
mopidy_touchscreen/base_screen.py
Normal file
16
mopidy_touchscreen/base_screen.py
Normal file
@@ -0,0 +1,16 @@
|
||||
__author__ = 'ander'
|
||||
|
||||
|
||||
class BaseScreen():
|
||||
|
||||
def __init__(self, size, base_size, manager, fonts):
|
||||
self.size = size
|
||||
self.base_size = base_size
|
||||
self.manager = manager
|
||||
self.fonts = fonts
|
||||
|
||||
def update(self, surface):
|
||||
pass
|
||||
|
||||
def event(self, event):
|
||||
pass
|
||||
Reference in New Issue
Block a user