Merge pull request 'garbageCan' (#9) from garbagecan into master

Reviewed-on: #9
This commit is contained in:
Paweł Felcyn 2023-03-26 15:25:11 +02:00
commit 29fcb83d83
1 changed files with 16 additions and 0 deletions

16
garbageCan.py Normal file
View File

@ -0,0 +1,16 @@
from garbage import Garbage
from typing import List, Tuple
class GarbageCan:
position: Tuple[int, int]
garbage: List[Garbage]
def __init__(self, position: Tuple[int, int]) -> None:
self.position = position
self.garbage = []
def add_garbage(self, garbage: Garbage) -> None:
self.garbage.append(garbage)
def remove_garbage(self, garbage: Garbage) -> None:
self.garbage.remove(garbage)