Guest User

Untitled

a guest
Jan 11th, 2020
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. def convert_json_to_game_frames(filename):
  2.     with open(filename, encoding='utf-8', errors='ignore') as json_file:
  3.         _json = json.load(json_file)
  4.     print(_json)
  5.     game = Game()
  6.     game.initialize(loaded_json=_json)
Advertisement
Add Comment
Please, Sign In to add comment