✨ Started on Hex. Also fourinarow difficulty
Difficulty added when starting a game of fourinarow, on a scale of 1-5. The Hex functions are added, but right now they are mostly copies of the fourinarow functions, and do not work
This commit is contained in:
@ -191,6 +191,11 @@ def makeFiles():
|
||||
os.makedirs("resources/games/4InARowBoards")
|
||||
logThis("The 4 in a row boards directory didn't exist")
|
||||
|
||||
# Creates the hexBoards foulder if it doesn't exist
|
||||
if os.path.isdir("resources/games/hexBoards") == False:
|
||||
os.makedirs("resources/games/hexBoards")
|
||||
logThis("The Hex boards directory didn't exist")
|
||||
|
||||
# Creates the oldImages foulder if it doesn't exist
|
||||
if os.path.isdir("resources/games/oldImages") == False:
|
||||
os.makedirs("resources/games/oldImages")
|
||||
|
Reference in New Issue
Block a user