1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/*
* Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
* Copyright (C) 2021 cyoung06
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package kr.syeyoung.dungeonsguide.utils.cursor;
import lombok.AllArgsConstructor;
import lombok.Getter;
@AllArgsConstructor
@Getter
public enum EnumCursor {
DEFAULT(32512,68,"arrowCursor","arrowCursor.cur"),
POINTING_HAND(32649,60,"pointingHandCursor", "pointingHandCursor.cur"),
OPEN_HAND(32646,58,"openHandCursor","openHandCursor.cur"),
CLOSED_HAND(32646,52,"closedHandCursor","closedHandCursor.cur"),
BEAM_CURSOR(32513, 152, "IBeamCursor", "IBeamCursor.cur"),
RESIZE_LEFT(32644, 70,"resizeLeftCursor", "resizeLeftCursor.cur"),
RESIZE_RIGHT(32644, 96,"resizeRightCursor", "resizeRightCursor.cur"),
RESIZE_LEFT_RIGHT(32644, 108, "resizeLeftRightCursor", "resizeLeftRightCursor.cur"),
RESIZE_UP(32645,138,"resizeUpCursor", "resizeUpCursor.cur"),
RESIZE_DOWN(32645,16,"resizeDownCursor", "resizeDownCursor.cur"),
RESIZE_UP_DOWN(32645,116,"resizeUpDownCursor", "resizeUpDownCursor.cur"),
RESIZE_TL(32642, 134, null, "resizeNW.cur"),
RESIZE_DR(32642, 14, null, "resizeSE.cur"),
RESIZE_TLDR(32642, 14, null, "resizeNWSE.cur"),
RESIZE_TR(32643, 136, null, "resizeNE.cur"),
RESIZE_DL(32643, 12, null, "resizeSW.cur"),
RESIZE_TRDL(32643, 12, null, "resizeNESW.cur"),
CROSS(32515, 34,"crosshairCursor", "crosshairCursor.cur"),
NOT_ALLOWED(32648, -1,"operationNotAllowedCursor", "operationNotAllowedCursor.cur"),
TEST(-1, -1, null, "testnonexistant.cur");
private int windows;
private int linux;
private String macos;
private String altFileName;
}
|