v1.2.0: overhauled controller pointer, now has unique sprite and works on linux

This commit is contained in:
Evan Debenham
2022-02-27 10:23:19 -05:00
parent 264742d467
commit 3f4a677700
6 changed files with 52 additions and 16 deletions
@@ -33,9 +33,10 @@ public class Cursor {
public enum Type {
//TODO if we ever add more cursors, should cache their pixmaps rather than always remaking
DEFAULT("gdx/cursor.png");
DEFAULT("gdx/cursor_mouse.png"),
CONTROLLER("gdx/cursor_controller.png");
private String file;
public final String file;
Type(String file){
this.file = file;