1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 14:03:21 +08:00

Add missing xmldoc

This commit is contained in:
Dean Herbert 2020-10-01 13:47:49 +09:00
parent ae9e884a48
commit b1f2bdd579

View File

@ -24,6 +24,9 @@ namespace osu.Game.Screens.Edit.Compose.Components
private bool canRotate;
/// <summary>
/// Whether rotation support should be enabled.
/// </summary>
public bool CanRotate
{
get => canRotate;
@ -36,6 +39,9 @@ namespace osu.Game.Screens.Edit.Compose.Components
private bool canScaleX;
/// <summary>
/// Whether vertical scale support should be enabled.
/// </summary>
public bool CanScaleX
{
get => canScaleX;
@ -48,6 +54,9 @@ namespace osu.Game.Screens.Edit.Compose.Components
private bool canScaleY;
/// <summary>
/// Whether horizontal scale support should be enabled.
/// </summary>
public bool CanScaleY
{
get => canScaleY;