Files
Igor-kr/farm_core/module.py
T
2026-07-01 13:47:06 +03:00

14 lines
403 B
Python

class BioCulture:
def __init__(self, id):
self._id = id
self._stage = "Зеленый"
def grow(self):
# Заглушка, которая вызовет конфликт
raise NotImplementedError("Рост не реализован в main!")
class HydroponicModule:
def __init__(self, count):
self.cultures = [BioCulture(i) for i in range(count)]