Martin Putzlocher
55d804f3bc
Zur Änderung der Docstrings pyment eingesetzt. z.B. ``` pyment -w Field.py ```
51 lines
610 B
Python
51 lines
610 B
Python
from Position import *
|
|
from Player import *
|
|
|
|
class Stone(object):
|
|
|
|
""":version:
|
|
:author:
|
|
|
|
|
|
"""
|
|
|
|
""" ATTRIBUTES
|
|
|
|
player (private)
|
|
|
|
position (private)
|
|
|
|
"""
|
|
|
|
def back_to_start(self):
|
|
"""
|
|
|
|
|
|
:returns: author
|
|
|
|
"""
|
|
pass
|
|
|
|
def set_position(self, position):
|
|
"""
|
|
|
|
:param Position: position :
|
|
:param position:
|
|
:returns: author
|
|
|
|
"""
|
|
pass
|
|
|
|
def __move(self, number_of_fields):
|
|
"""
|
|
|
|
|
|
@param int number_of_fields :
|
|
@return :
|
|
@author
|
|
"""
|
|
pass
|
|
|
|
|
|
|