diff --git a/osu.Game/Graphics/Cursor/IProvideCursor.cs b/osu.Game/Graphics/Cursor/IProvideCursor.cs
index eb17f72846..b36155a881 100644
--- a/osu.Game/Graphics/Cursor/IProvideCursor.cs
+++ b/osu.Game/Graphics/Cursor/IProvideCursor.cs
@@ -6,16 +6,19 @@ using osu.Framework.Graphics.Cursor;
namespace osu.Game.Graphics.Cursor
{
+ ///
+ /// Interface for s that display cursors which can replace the user's cursor.
+ ///
public interface IProvideCursor : IDrawable
{
///
/// The cursor provided by this .
+ /// May be null if no cursor should be visible.
///
CursorContainer Cursor { get; }
///
- /// Whether the cursor provided by this should be displayed.
- /// If this is false, a cursor occurring earlier in the draw hierarchy will be displayed instead.
+ /// Whether the cursor provided by this should be displayed as the user's cursor.
///
bool ProvidesUserCursor { get; }
}