Add some more doc comment

This commit is contained in:
ekrctb 2020-12-14 11:32:34 +09:00
parent 36529bdd1b
commit f621d977fc
1 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,7 @@ public abstract class CatchHitObject : HitObject, IHasXPosition, IHasComboInform
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// This value is the original value specified in the beatmap, not affected by beatmap processing. /// This value is the original value specified in the beatmap, not affected by beatmap processing.
/// It should be used instead of <see cref="EffectiveX"/> when working on a beatmap, not a gameplay.
/// </remarks> /// </remarks>
public float OriginalX public float OriginalX
{ {
@ -32,6 +33,9 @@ public float OriginalX
float IHasXPosition.X => OriginalX; float IHasXPosition.X => OriginalX;
/// <summary>
/// An alias of <see cref="OriginalX"/> setter.
/// </summary>
public float X public float X
{ {
set => OriginalX = value; set => OriginalX = value;