mirror of
https://github.com/Febbweiss/mopidy-touchscreen.git
synced 2026-03-04 14:15:41 +00:00
9 lines
131 B
Python
9 lines
131 B
Python
import pygame
|
|
|
|
|
|
class MainScreen():
|
|
|
|
def update(self):
|
|
surface = pygame.Surface((200,200)).fill((255,255,255))
|
|
return surface
|