fromClassToGame

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.

View the Project on GitHub mcgivrer/fromClassToGame

Refactoring packages

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: