mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Fix comments
This commit is contained in:
@ -17,6 +17,9 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Preprocessing.Colour.Data
|
||||
/// </summary>
|
||||
public List<MonoEncoding> Payload { get; private set; } = new List<MonoEncoding>();
|
||||
|
||||
/// <summary>
|
||||
/// The parent <see cref="CoupledColourEncoding"/> that contains this <see cref="ColourEncoding"/>
|
||||
/// </summary>
|
||||
public CoupledColourEncoding? Parent;
|
||||
|
||||
/// <summary>
|
||||
|
@ -19,6 +19,9 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Preprocessing.Colour.Data
|
||||
/// </summary>
|
||||
public List<TaikoDifficultyHitObject> EncodedData { get; private set; } = new List<TaikoDifficultyHitObject>();
|
||||
|
||||
/// <summary>
|
||||
/// The parent <see cref="ColourEncoding"/> that contains this <see cref="MonoEncoding"/>
|
||||
/// </summary>
|
||||
public ColourEncoding? Parent;
|
||||
|
||||
/// <summary>
|
||||
|
@ -11,7 +11,6 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Preprocessing
|
||||
{
|
||||
/// <summary>
|
||||
/// Does preprocessing on a list of <see cref="TaikoDifficultyHitObject"/>s.
|
||||
/// TODO: Review this - this is currently only a one-step process, but will potentially be expanded in the future.
|
||||
/// </summary>
|
||||
public static List<DifficultyHitObject> Process(List<DifficultyHitObject> difficultyHitObjects)
|
||||
{
|
||||
|
Reference in New Issue
Block a user