To create your own library, run the following command with the appropriate flags (see –help for more informations).
If you have any question, feel free to conctact the maintainers.
../B-OOP-400-STG-4-1-arcade-mathieu.barleon//
├── doc/
│ ├── Doxygen
│ ├── generate.sh*
│ └── open.sh*
├── GenerateTemplate/
│ ├── TemplateCreator/
│ │ ├── BuildFiles.py
│ │ ├── Games/
│ │ │ ├── Makefile*
│ │ │ ├── __Name__Game.cpp
│ │ │ └── __Name__Game.hpp
│ │ ├── Graphicals/
│ │ │ ├── Makefile*
│ │ │ ├── __Name__DisplayModule.cpp
│ │ │ └── __Name__DisplayModule.hpp
│ │ ├── __init__.py
│ │ ├── Main.py
│ │ ├── Menu/
│ │ │ ├── Makefile*
│ │ │ ├── __Name__Game.cpp
│ │ │ └── __Name__Game.hpp
│ │ ├── ParseArgs.py
│ │ └── ReadFlags.py
│ └── templateCreator.py
├── include/
│ ├── Macro.hpp
│ └── Types.hpp
├── lib/
├── Makefile*
├── README.md
├── Score/
└── src/
├── Core/
│ ├── Core.cpp
│ └── Core.hpp
├── Games/
│ ├── AGame.cpp
│ ├── AGame.hpp
│ ├── IGame.hpp
│ ├── Makefile*
│ ├── Menu/
│ │ ├── Assets/
│ │ │ ├── image2.hpp
│ │ │ └── image.hpp
│ │ ├── Makefile
│ │ ├── Menu.cpp
│ │ └── Menu.hpp
│ ├── Pacman/
│ │ ├── Assets/
│ │ │ ├── ghosts/
│ │ │ │ ├── green_bottom.hpp
│ │ │ │ ├── orange_bottom.hpp
│ │ │ │ ├── pink_bottom.hpp
│ │ │ │ ├── red_bottom.hpp
│ │ │ │ └── vulnerable_bottom.hpp
│ │ │ ├── map/
│ │ │ │ ├── gum.hpp
│ │ │ │ ├── map.hpp
│ │ │ │ └── pacgum.hpp
│ │ │ └── pac/
│ │ │ └── pac_bottom_4.hpp
│ │ ├── Entities/
│ │ │ ├── Blinky.cpp
│ │ │ ├── Blinky.hpp
│ │ │ ├── Clyde.cpp
│ │ │ ├── Clyde.hpp
│ │ │ ├── Ghost.cpp
│ │ │ ├── Ghost.hpp
│ │ │ ├── Inky.cpp
│ │ │ ├── Inky.hpp
│ │ │ ├── Pinky.cpp
│ │ │ ├── Pinky.hpp
│ │ │ ├── Player.cpp
│ │ │ └── Player.hpp
│ │ ├── includes.hpp
│ │ ├── Makefile*
│ │ ├── PacmanFactory.cpp
│ │ ├── PacmanGame.cpp
│ │ └── PacmanGame.hpp
│ └── Snake/
│ ├── Makefile*
│ ├── SnakeGame.cpp
│ └── SnakeGame.hpp
├── Graphicals/
│ ├── ADisplayModule.cpp
│ ├── ADisplayModule.hpp
│ ├── Assets/
│ │ └── font.hpp
│ ├── IDisplayModule.hpp
│ ├── Makefile*
│ ├── NCurses/
│ │ ├── Makefile*
│ │ ├── NCursesDisplayModule.cpp
│ │ └── NCursesDisplayModule.hpp
│ ├── SDL/
│ │ ├── Makefile*
│ │ ├── SDLDisplayModule.cpp
│ │ └── SDLDisplayModule.hpp
│ └── SFML/
│ ├── Makefile*
│ ├── SFMLCharTraitFix.hpp
│ ├── SFMLDisplayModule.cpp
│ └── SFMLDisplayModule.hpp
├── Main/
│ └── main.cpp
└── Utils/
├── Error.cpp
├── Error.hpp
├── GetLib.cpp
├── GetLib.hpp
├── Logger.cpp
├── Logger.hpp
└── Makefile*