namespace Robust.Client.Graphics
{
///
/// OS-standard cursor shapes.
///
public enum StandardCursorShape : byte
{
///
/// The standard arrow shape. Used in almost all situations.
///
Arrow,
///
/// The I-Beam shape. Used when mousing over a place where text can be entered.
///
IBeam,
///
/// The crosshair shape. Used when dragging and dropping.
///
Crosshair,
///
/// The hand shape. Used when mousing over something that can be dragged around.
///
Hand,
///
/// The horizontal resize shape. Used when mousing over something that can be horizontally resized.
///
HResize,
///
/// The vertical resize shape. Used when mousing over something that can be vertically resized.
///
VResize
}
}