forked from s464965/WMICraft
7 lines
152 B
Python
7 lines
152 B
Python
|
from ui.screens.screen import Screen
|
||
|
|
||
|
|
||
|
class Credits(Screen):
|
||
|
def __init__(self, screen, clock):
|
||
|
super().__init__('credits', screen, clock)
|