Hello,
I've been working on developing a game for about a week, but I'm encountering some problems with importing separate files. I would greatly appreciate any help!
Directory Structure:
/
Games
BattleGame
BattleGame.py
characters.py
moves.py
Should I keep everything in a single file? I've noticed that most other games are structured this way. I'd prefer to separate data from the game logic, but I don't want to compromise on resources. How can I import a file from the same game directory? I keep encountering a "module not found" error no matter what I try.
I've tried the following:
from moves import moves
from Games.BattleGame.moves import moves