Now we need a user player class. We'll call it User and have it inherit our base Player class.
User
Player
Make sure to type class User(Player):.
class User(Player):