blob: b5253e632ee3690bdf52b1e158c5357fc6ed3a1f (
plain)
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
|
package cc.polyfrost.oneconfig.renderer;
public class NVGAsset {
private final int image;
private final int width;
private final int height;
protected NVGAsset(int image, int width, int height) {
this.image = image;
this.width = width;
this.height = height;
}
public int getImage() {
return image;
}
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
}
|