core: game: split backed django
This commit is contained in:
5
games/objects/tictactoe/TicTacToeGame.py
Normal file
5
games/objects/tictactoe/TicTacToeGame.py
Normal file
@ -0,0 +1,5 @@
|
||||
from ..AGame import AGame
|
||||
|
||||
|
||||
class TicTacToeGame(AGame):
|
||||
pass
|
4
games/objects/tictactoe/TicTacToePlayer.py
Normal file
4
games/objects/tictactoe/TicTacToePlayer.py
Normal file
@ -0,0 +1,4 @@
|
||||
from ..APlayer import APlayer
|
||||
|
||||
class TicTacToePlayer(APlayer):
|
||||
pass
|
4
games/objects/tictactoe/TicTacToeSpectator.py
Normal file
4
games/objects/tictactoe/TicTacToeSpectator.py
Normal file
@ -0,0 +1,4 @@
|
||||
from ..ASpectator import ASpectator
|
||||
|
||||
class TicTacToeSpectator(ASpectator):
|
||||
pass
|
Reference in New Issue
Block a user