All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.badlogic.gdx.graphics.Cursor Maven / Gradle / Ivy


package com.badlogic.gdx.graphics;

import com.badlogic.gdx.Graphics;
import com.badlogic.gdx.utils.Disposable;

/** 

* Represents a mouse cursor. Create a cursor via * {@link Graphics#newCursor(Pixmap, int, int)}. To * set the cursor use {@link Graphics#setCursor(Cursor)}. * To use one of the system cursors, call Graphics#setSystemCursor *

**/ public interface Cursor extends Disposable { public static enum SystemCursor { Arrow, Ibeam, Crosshair, Hand, HorizontalResize, VerticalResize } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy