Files
RobustToolbox/Robust.Client/Graphics/StandardCursorShape.cs
Pieter-Jan Briers 2783e89d1f SDL2 windowing backend (#2979)
* SDL2 windowing prototype.

* More stuff idk
2022-07-15 00:07:30 +10:00

44 lines
1.1 KiB
C#

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