Zaktualizuj 'plant.py'

skomentowanie metody dodajacej i pobierajacej wspolrzedne
This commit is contained in:
Dominik Małyszka 2020-04-05 17:31:18 +00:00
parent 1665e01931
commit b1b3d505ff

View File

@ -22,14 +22,15 @@ class Plant:
def collect(self):
pass
#nadajemy współrzędne roślince
def add_coordinates(self, x, y):
self._x = x
self._y = y
##to niepotrzebne, bo współrzedne beda w glebie
##nadajemy współrzędne roślince
##def add_coordinates(self, x, y):
## self._x = x
## self._y = y
#pobieramy współrzędne roślinki
def get_coordinates(self):
return self._x, self._y
##pobieramy współrzędne roślinki
##def get_coordinates(self):
## return self._x, self._y
#pobieramy id roślinki
def get_id(self):