I would like some advice on something. I have many games which all use the same base code, and they extend the base classes overriding anywhere they need their own custom functionality. This is fine, but it has reached a point where it has become unreasonable every time I make a change to the base code, I need to republish every individual game. I would like a solution where I only need to change the base code and publish it itself and the other games will then just use this new published base.
I thought about publishing the base code as a swf and then loading it into the individual game projects, but then I won't be able to extend the classes right? Or about publishing the base code as a swc but then I would still need to publish each individual game with this new swc I think.
Does anyone have any ideas or suggestions that would help me?
Thanks!
While this is not exactly the answer to this question, my resolution to this problem was to automate the build process using ANT. So every game does still need to be compiled and uploaded again, but it is no longer unreasonably time consuming.