diff --git a/GAME/include/DS.h b/GAME/include/DS.h
index b86626079f6a88c128a4a4eaa088638183b9d696..bc3514eb93506fcbda676b9386293c2cb2b747d3 100644
--- a/GAME/include/DS.h
+++ b/GAME/include/DS.h
@@ -2,12 +2,28 @@
 // Created by Lucile on 18/02/2021.
 */
 
+/*!
+ * \file DS.h
+ * \brief Header DS
+ * \authors Lucile
+ * \version 1
+ * \date 25/02/2021
+ *
+ * DS structure definiton.
+ *
+ */
+
 #ifndef INSAGAME_DS_H
 #define INSAGAME_DS_H
 
+/*!
+ * \struct DS
+ * \brief DS structure
+ */
+
 struct DS {
-    int door;
-    char * image_DS;
+    int door; /**< Integer representing the door number i.e. the DS location. */
+    char * image_DS; /**< Source image of the DS. */
 };
 
 #endif /*INSAGAME_DS_H*/