diff --git a/T3-Unity/Assets/Scripts/Obstacle/Medium/DragDropM.cs b/T3-Unity/Assets/Scripts/Obstacle/Medium/DragDropM.cs
index 71091fa10728462e19165dfd37163a3c732d0e90..15c334fec6eea966c2929fbfb77e354e08b621ef 100644
--- a/T3-Unity/Assets/Scripts/Obstacle/Medium/DragDropM.cs
+++ b/T3-Unity/Assets/Scripts/Obstacle/Medium/DragDropM.cs
@@ -1,27 +1,32 @@
-using System.Collections;
+using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 using UnityEngine.EventSystems;
 using TMPro;
 
-
+    //! @authors cgroxy
+    //! @brief "Insérer description rapide"
+    //! @details "Insérer description détaillée"
 public class DragDropM : MonoBehaviour, IDragHandler, IDropHandler
 {
-
+        // Champs publiques
     [SerializeField] private Canvas canvas;
 
-    private RectTransform rectransform;
-    public TMP_Text textshowed;
-    bool block = true;
-
+        // Champs privés
+    private RectTransform rectransform; //!< "Insérer description de la variable"
+    public TMP_Text textshowed; //!< "Insérer description de la variable"
+    bool block = true; //!< "Insérer description de la variable"
 
+        //! @brief Se lance au lancement du script.
     private void Awake()
     {
         rectransform = GetComponent<RectTransform>();
 
     }
 
-
+        //! @param enventData Donnée de l'event @b OnDrop(PointerEventData)
+        //! @brief "Insérer description rapide"
+        //! @details "Insérer description détaillée"
     public void OnDrag(PointerEventData eventData)
     {
 
@@ -38,6 +43,9 @@ public class DragDropM : MonoBehaviour, IDragHandler, IDropHandler
 
     }
 
+        //! @param enventData Donnée de l'event @b OnDrop(PointerEventData)
+        //! @brief "Insérer description rapide"
+        //! @details "Insérer description détaillée"
     public void OnDrop(PointerEventData eventData)
     {
 
@@ -50,7 +58,5 @@ public class DragDropM : MonoBehaviour, IDragHandler, IDropHandler
 
             block = false;
         }
-
-
     }
 }