mirror of
https://github.com/Yonokid/PyTaiko.git
synced 2026-02-04 11:40:13 +01:00
18 lines
366 B
Python
18 lines
366 B
Python
import pyray as ray
|
|
|
|
from libs.screen import Screen
|
|
|
|
|
|
class DevScreen(Screen):
|
|
def on_screen_start(self):
|
|
super().on_screen_start()
|
|
|
|
def on_screen_end(self, next_screen: str):
|
|
return super().on_screen_end(next_screen)
|
|
|
|
def update(self):
|
|
super().update()
|
|
|
|
def draw(self):
|
|
ray.draw_rectangle(0, 0, 1280, 720, ray.GREEN)
|