AttributeError: 'tuple' object has no attribute 'move'
python-forum.io › thread-16387You need replace this: 1. enemy_0 = NonPlayerCharacter = ("enemy.png", 20, 600, 50, 50) to this: 1. enemy_0 = NonPlayerCharacter ("enemy.png", 20, 600, 50, 50) This is line 52 of your code from Pastebin. You need to make an instance of NonPlayerCharacter class, but you have the symbol of equality, and you have tuple instead NonPlayerCharacter.