mirror of https://github.com/ppy/osu
Adjust/improve a few comments.
This commit is contained in:
parent
afefde7ecf
commit
418189effd
|
@ -18,7 +18,10 @@
|
||||||
namespace osu.Game.Modes.UI
|
namespace osu.Game.Modes.UI
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Base HitRenderer. Doesn't hold objects, should not be derived.
|
/// Base HitRenderer. Doesn't hold objects.
|
||||||
|
/// <para>
|
||||||
|
/// Should not be derived - derive <see cref="HitRenderer{TObject, TJudgement}"/> instead.
|
||||||
|
/// </para>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public abstract class HitRenderer : Container
|
public abstract class HitRenderer : Container
|
||||||
{
|
{
|
||||||
|
@ -75,6 +78,9 @@ protected void TriggerOnJudgement(JudgementInfo j)
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// HitRenderer that applies conversion to Beatmaps. Does not contain a Playfield
|
/// HitRenderer that applies conversion to Beatmaps. Does not contain a Playfield
|
||||||
/// and does not load drawable hit objects.
|
/// and does not load drawable hit objects.
|
||||||
|
/// <para>
|
||||||
|
/// Should not be derived - derive <see cref="HitRenderer{TObject, TJudgement}"/> instead.
|
||||||
|
/// </para>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <typeparam name="TObject">The type of HitObject contained by this HitRenderer.</typeparam>
|
/// <typeparam name="TObject">The type of HitObject contained by this HitRenderer.</typeparam>
|
||||||
public abstract class HitRenderer<TObject> : HitRenderer
|
public abstract class HitRenderer<TObject> : HitRenderer
|
||||||
|
|
Loading…
Reference in New Issue