How do you move the envelopes?
You'll use the .move() method with the envelope image object. That will be in a move function in your envelope.py file. You'll call that function over and over in your playgame function in the main program.
Yes, but you have to WRITE the move() method inside the envelope class.
Specifically, it needs to move the Image object that us visually representing the envelope in the window by calling the Image's move method!
Thank you so much!