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