Hello,
We are developing a number of individual games (that will be wrapped up in mobile apps using CoronaCards) but intend that they all share some common components.
So we have this structure:
game1/main.lua
game2/main.lua
common/menu.lua
common/highscore.lua
Where common/menu.lua and common/highscore.lua needs to be accessible from game1/main.lua and game2/main.lua.
It’s easy if common/ lives under game1/ but then this falls apart when trying to share these with game2/
Any tips for achieving this?
Thanks in advance.
