mirror of
https://github.com/csd4ni3l/logical-signals.git
synced 2025-11-05 04:58:09 +01:00
12 lines
318 B
Python
12 lines
318 B
Python
import arcade, arcade.gui
|
|
|
|
from utils.constants import menu_background_color, button_style
|
|
from utils.preload import button_texture, button_hovered_texture
|
|
|
|
class Game(arcade.gui.UIView):
|
|
def __init__(self, pypresence_client):
|
|
super().__init__()
|
|
|
|
def on_show_view(self):
|
|
super().on_show_view()
|