A journey from a simple class to a game with the Java language https://mcgivrer.github.io/fromClassToGame/ , and open Hub https://www.openhub.net/p/fromClassToGame.
As far as we go, the code start having multiple classes with dedicated roles. It’s now time to organize our work through java package to isolate and document through some domains our code.
fr.snapgames.fromcalsstogame
.core
.config
.entity
.exceptions
.gfx
.io
.scenes
Game
.demo
.scenes
DemoScene
Two main packages are now splitting our classes:
core
package will contain all classes dedicated to the Game framework,demo
package will host all sample classes demoing the framework ones.