最佳答案
这是我计划用于我的游戏的代码,但它抱怨一个 MRO 错误:
class Player:
pass
class Enemy(Player):
pass
class GameObject(Player, Enemy):
pass
g = GameObject()