Martin Putzlocher
55d804f3bc
Zur Änderung der Docstrings pyment eingesetzt. z.B. ``` pyment -w Field.py ```
44 lines
448 B
Python
44 lines
448 B
Python
from Field import *
|
|
|
|
class Position(object):
|
|
|
|
""":version:
|
|
:author:
|
|
|
|
|
|
"""
|
|
|
|
""" ATTRIBUTES
|
|
|
|
field (private)
|
|
|
|
on_board (private)
|
|
|
|
in_house (private)
|
|
|
|
on_start (private)
|
|
|
|
"""
|
|
|
|
def init_pos(self):
|
|
"""
|
|
|
|
|
|
:returns: author
|
|
|
|
"""
|
|
pass
|
|
|
|
def change_pos(self, num):
|
|
"""
|
|
|
|
:param int: num :
|
|
:param num:
|
|
:returns: author
|
|
|
|
"""
|
|
pass
|
|
|
|
|
|
|