Informatik10/maedn/Field.py

35 lines
490 B
Python

from Board import *
class Field(object):
"""
:version:
:author:
"""
""" ATTRIBUTES
board (private)
occupied (private)
number (private)
color (private)
"""
def get_next_field(self, color_of_stone = "black"):
"""
Give back next field on board, dependent on the color of a stone on the current
field.
@param string color_of_stone :
@return Field :
@author
"""
pass