Have there been any threads on programming patching or updating utilities for games
or
Does anyone here have any good links they’d like to share on creating patching / updating utilities?
I’m not sure how it’s done commercially, but from a java novice perspective it seems you could keep a list of version IDs for each java .class and a method to pull those IDs from each class, then when a new game version is released, a list of classes and current version numbers is downloaded to the client…the client references his IDs against the new list, and only downloads those classes that have been updated.
I’m going to take a wild stab in the dark here and assume there’s a much better way then the one I’m using…any update experts out there?