Skip to content
Snippets Groups Projects
Commit 04c3e73b authored by ERKEN EFE's avatar ERKEN EFE
Browse files

:pencil: DOC: Add more documentation to grid.h

Added documentation to struct attributes in grid.h
parent 0c8f023c
Branches
Tags
No related merge requests found
......@@ -24,13 +24,13 @@
*/
enum CaseType
{
WALL = '#',
BOX = '$',
PLAYER = '@',
GOAL = '.',
NONE = ' ',
BOX_GOAL = '*',
PLAYER_GOAL = '+'
WALL = '#', ///< Un mur
BOX = '$', ///< Une boîte
PLAYER = '@', ///< Le joueur
GOAL = '.', ///< Les objectifs
NONE = ' ', ///< Le vide
BOX_GOAL = '*', ///< Superposition d'une boîte et d'un objectif
PLAYER_GOAL = '+' ///< Superposition d'un joueur et d'un objectif
};
/**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment