I'm running into some problems where it returns:
TypeError: run() missing 1 required positional argument: 'self'
Here is the Code:
from direct.showbase.ShowBase import ShowBase
class MyGame(ShowBase):
def __init__(self):
super.__init__()
Game = MyGame
Game.run()
Why is this happening?