CSFML Game Project, for the final graphic project of the first year of Epitech. The goal of the project is to create a game using the CSFML library, with a pirate theme.
- Map
- Character
- Inventory
- Quest
- Combat
B-MUL-200> git clone [email protected]:Pirate-Quest/PirateQuest.git
B-MUL-200> cd PirateQuest
B-MUL-200/PirateQuest> make
B-MUL-200/PirateQuest> ./my_rpg
All the source code has been written according to the Epitech C Coding Style.
All the commits have been written according to the Conventional Commits specification.
Branches are named according to the following pattern: type/subject
, where type
is the type of the branch and subject
is a short description of the branch.
The types are:
feat
,feature
: a new featurefix
: a bug fixdocs
: changes to documentationstyle
: formatting, missing semi colons, etc; no code changerefactor
: refactoring production codetest
: adding tests, refactoring test; no production code change