added card types

This commit is contained in:
2023-12-06 12:21:51 +01:00
parent 0b5aef794a
commit 4fbd1c6663
19 changed files with 120 additions and 26 deletions

7
Game_Client/main.py Normal file
View File

@ -0,0 +1,7 @@
import pygame
from Classes.System.App import App
if __name__ == "__main__":
pygame.init()
game = App()
game.onExecute()