mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Add xmldocs
This commit is contained in:
@ -7,8 +7,15 @@ namespace osu.Game.Rulesets.Objects
|
|||||||
{
|
{
|
||||||
public class PathControlPoint : IEquatable<PathControlPoint>
|
public class PathControlPoint : IEquatable<PathControlPoint>
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The position of this <see cref="PathControlPoint"/>.
|
||||||
|
/// </summary>
|
||||||
public readonly Bindable<Vector2> Position = new Bindable<Vector2>();
|
public readonly Bindable<Vector2> Position = new Bindable<Vector2>();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The type of path segment starting at this <see cref="PathControlPoint"/>.
|
||||||
|
/// If null, this <see cref="PathControlPoint"/> will be a part of the previous path segment.
|
||||||
|
/// </summary>
|
||||||
public readonly Bindable<PathType?> Type = new Bindable<PathType?>();
|
public readonly Bindable<PathType?> Type = new Bindable<PathType?>();
|
||||||
|
|
||||||
public bool Equals(PathControlPoint other) => Position.Value == other.Position.Value && Type.Value == other.Type.Value;
|
public bool Equals(PathControlPoint other) => Position.Value == other.Position.Value && Type.Value == other.Type.Value;
|
||||||
|
Reference in New Issue
Block a user