core: game: split backed django

This commit is contained in:
2024-04-08 14:19:53 +02:00
parent c1624cce83
commit 25d86012ba
19 changed files with 192 additions and 117 deletions

View File

@ -0,0 +1,5 @@
from ..AGame import AGame
class TicTacToeGame(AGame):
pass

View File

@ -0,0 +1,4 @@
from ..APlayer import APlayer
class TicTacToePlayer(APlayer):
pass

View File

@ -0,0 +1,4 @@
from ..ASpectator import ASpectator
class TicTacToeSpectator(ASpectator):
pass