diff --git a/include/grid.h b/include/grid.h index 7cc148a8a0958a22bf0a2be7bce0f9bf234e3ffd..aab89e7e353292755da0e73642ebc8f180d4226e 100644 --- a/include/grid.h +++ b/include/grid.h @@ -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 }; /**