9 lines
205 B
Haxe
9 lines
205 B
Haxe
|
package system.windows.input;
|
||
|
|
||
|
@:native("System.Windows.Input.Cursors")
|
||
|
extern class Cursors {
|
||
|
public static var Arrow: Cursor;
|
||
|
public static var Hand: Cursor;
|
||
|
public static var Wait: Cursor;
|
||
|
}
|