using System;
namespace Robust.Client.Graphics
{
///
/// Represents a handle to a cursor object.
///
///
/// If disposed while the active cursor, the active cursor will be reset to the default arrow.
///
/// Note that you cannot dispose standard cursors gotten from .
///
///
///
///
[NotContentImplementable]
public interface ICursor : IDisposable
{
}
}