Informatik10/maedn/Position.py

44 lines
448 B
Python
Raw Normal View History

from Field import *
2022-04-04 06:19:04 +00:00
class Position(object):
""":version:
2022-04-04 06:19:04 +00:00
:author:
2022-04-04 06:19:04 +00:00
"""
""" ATTRIBUTES
field (private)
2022-04-04 06:19:04 +00:00
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
2022-04-04 06:19:04 +00:00