Explorar el Código

[csharp] Minor: corrected comment format.

Harald Csaszar hace 1 año
padre
commit
4874c938b0
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      spine-csharp/src/PhysicsConstraint.cs

+ 2 - 2
spine-csharp/src/PhysicsConstraint.cs

@@ -70,7 +70,7 @@ namespace Spine {
 			mix = data.mix;
 			mix = data.mix;
 		}
 		}
 
 
-		/** Copy constructor. */
+		/// <summary>Copy constructor.</summary>
 		public PhysicsConstraint (PhysicsConstraint constraint) {
 		public PhysicsConstraint (PhysicsConstraint constraint) {
 			if (constraint == null) throw new ArgumentNullException("constraint", "constraint cannot be null.");
 			if (constraint == null) throw new ArgumentNullException("constraint", "constraint cannot be null.");
 			data = constraint.data;
 			data = constraint.data;
@@ -274,7 +274,7 @@ namespace Spine {
 		public bool Active { get { return active; } }
 		public bool Active { get { return active; } }
 
 
 
 
-		/** The physics constraint's setup pose data. */
+		/// <summary>The physics constraint's setup pose data.</summary>
 		public PhysicsConstraintData getData () {
 		public PhysicsConstraintData getData () {
 			return data;
 			return data;
 		}
 		}