Adding the ship image
- load an image using the Pygame blit() method
- pulling a free copyright image from opengameart.com
- can use any image format, but .bmp is the default in Python
Creating the ship class
- create a new ship module that will contain the class Ship

- Pygame allows us to treat game elements like rectangles(rects)
- efficient in instances where two objects collide