Martin Putzlocher
55d804f3bc
Zur Änderung der Docstrings pyment eingesetzt. z.B. ``` pyment -w Field.py ```
30 lines
258 B
Python
30 lines
258 B
Python
|
|
class GameView(object):
|
|
|
|
""":version:
|
|
:author:
|
|
|
|
|
|
"""
|
|
|
|
def display_board(self):
|
|
"""
|
|
|
|
|
|
:returns: author
|
|
|
|
"""
|
|
pass
|
|
|
|
def update_board(self):
|
|
"""
|
|
|
|
|
|
:returns: author
|
|
|
|
"""
|
|
pass
|
|
|
|
|
|
|