I've just received my Thumbies (!!!)
I wanted to import my game to it, but it doesn't run. I've been commenting code to figure out the issue and the first issue I see is importing game files.
I've split my code into multiple file and had no issue importing other files, but it seems I was running the files from the root, when I move my game to "/Games/Demo" instead of "/" my import don't work anymore
I've notice that if I change
"import game_framework" to "import Games.Demo.game_framework" it seems to fix the issue
But then when I want to change the name to something meaningful I'll have to go through all my files and swap the imports...
Is there some python code I don't know that might solve this issue?
Is there something I'm missing?
Or am is that simply a limitation of how the thumby/micropython works that I have to handle manually?