Initial commit from game template

This commit is contained in:
csd4ni3l
2025-11-19 22:00:15 +01:00
commit 94479f3eb2
20 changed files with 2025 additions and 0 deletions

11
game/play.py Normal file
View File

@@ -0,0 +1,11 @@
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()