···175175 }
176176 }
177177178178+ /// <summary>
179179+ /// Compares the tag of the Projectile instance to the given string.
180180+ /// Mirrors <a href="http://docs.unity3d.com/ScriptReference/GameObject.CompareTag.html>GameObject.CompareTag</a>.
181181+ /// </summary>
182182+ /// <returns><c>true</c>, if tag is an exact match to the string, <c>false</c> otherwise.</returns>
183183+ /// <param name="tag">Tag.</param>
178184 public bool CompareTag(string tag) {
179185 return gameObject.CompareTag (tag);
180186 }