Skip to content

Commit

Permalink
format the code styles from game1 to game10
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesPikachu committed Jan 4, 2021
1 parent aa7eb9c commit 3d3dfc7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Game2/cfg.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'''配置文件'''
import os


'''图片路径'''
BLOCK_IMAGE_PATH = 'resources/images/block.png'
PIKACHU_IMAGE_PATH = 'resources/images/pikachu.png'
BLOCK_IMAGE_PATH = os.path.join(os.getcwd(), 'resources/images/block.png')
PIKACHU_IMAGE_PATH = os.path.join(os.getcwd(), 'resources/images/pikachu.png')

0 comments on commit 3d3dfc7

Please sign in to comment.