garbageCan
This commit is contained in:
parent
94e65feaa9
commit
f3a26b9653
16
garbageCan.py
Normal file
16
garbageCan.py
Normal 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)
|
Loading…
Reference in New Issue
Block a user