mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 14:17:26 +08:00
Add xmldocs to IPlacementHandler
This commit is contained in:
parent
0e841628b6
commit
72d48aa7f5
@ -7,9 +7,22 @@ namespace osu.Game.Screens.Edit.Screens.Compose
|
||||
{
|
||||
public interface IPlacementHandler
|
||||
{
|
||||
/// <summary>
|
||||
/// Notifies that a placement has begun.
|
||||
/// </summary>
|
||||
/// <param name="hitObject">The <see cref="HitObject"/> being placed.</param>
|
||||
void BeginPlacement(HitObject hitObject);
|
||||
|
||||
/// <summary>
|
||||
/// Notifies that a placement has finished.
|
||||
/// </summary>
|
||||
/// <param name="hitObject">The <see cref="HitObject"/> that has been placed.</param>
|
||||
void EndPlacement(HitObject hitObject);
|
||||
|
||||
/// <summary>
|
||||
/// Deletes a <see cref="HitObject"/>.
|
||||
/// </summary>
|
||||
/// <param name="hitObject">The <see cref="HitObject"/> to delete.</param>
|
||||
void Delete(HitObject hitObject);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user