Update 'garbageTruck.py'
This commit is contained in:
parent
bfd78aee90
commit
18cc38b3ff
@ -2,12 +2,11 @@ from typing import List
|
|||||||
|
|
||||||
class GarbageTruck:
|
class GarbageTruck:
|
||||||
position: Tuple[int, int]
|
position: Tuple[int, int]
|
||||||
paper: []
|
paper: List[RecognizedGarbage]
|
||||||
plastic_and_metal: []
|
plastic_and_metal: List[RecognizedGarbage]
|
||||||
glass: []
|
glass: List[RecognizedGarbage]
|
||||||
bio: []
|
bio: List[RecognizedGarbage]
|
||||||
mixed: []
|
mixed: List[RecognizedGarbage]
|
||||||
RecognizedGarbage: []
|
|
||||||
truckSpritePath = 'imgs/dust_car.png'
|
truckSpritePath = 'imgs/dust_car.png'
|
||||||
def __init__(self, position: List[int, int]) -> None:
|
def __init__(self, position: List[int, int]) -> None:
|
||||||
self.position = position
|
self.position = position
|
||||||
|
Loading…
Reference in New Issue
Block a user