Simple food and debug bugfix

This commit is contained in:
2026-04-12 17:21:56 -04:00
parent 7111c6220d
commit c92699888e
3 changed files with 17 additions and 5 deletions

View File

@@ -2,6 +2,7 @@ class Cat:
def __init__(self, name, traits):
self.name = name
self.traits = traits
self.food = 3
def to_dict(self):
return vars(self)