Hey there!
I have a parent Class (MiniGame) and some number of Child classes
My folder structure looks something like this
Assets
|----Graphics
|-Images
|--"Background_image.jpg
|----Sounds
|- Music
|--background_music.mp3
|-Effects
|--sfx.mp3
games
|----Memory_games
|-Memory_Simon.py (CHILD CLASS FILE)
|----Mini_Game.py (PARENT CLASS FILE)
|----OptionMenu.py
main.py
Given that my Parent class MiniGame is located within Mini_Game.py (Projectdir/games/Mini_game.py) and my children classes will be found in (Projectdir/games/game category/Actual_gamefile), how might I reference the assets folder (and its subdirectories) within my ParentClass so that I might just use the filename within the children class?