16 lines
438 B
Python
16 lines
438 B
Python
|
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)
|