blank game

This commit is contained in:
2026-06-22 17:42:45 +03:00
parent 3b8452da18
commit f2e476f01f
50 changed files with 295 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import arcade
from logo import LogoView
if __name__ == '__main__':
window = arcade.Window(fullscreen=True)
window.show_view(LogoView())
arcade.run()