6 lines
118 B
Python
6 lines
118 B
Python
class Field:
|
|
def __init__(self, window, x, y):
|
|
self.window = window
|
|
self.x = x
|
|
self.y = y
|