What is the correct syntax for instantiating a new object of the type Game?
my_game = class.Game()
my_game = Game()
my_game = Game.create()
my_game = class(Game)