blob: fab70a4a3421ecbf875a0e0b4c1c79381da11c94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package cc.polyfrost.oneconfig.renderer;
/**
* Data class storing an image.
* This class is purely a data class, and does not contain any logic. It does not need to be used unless you want to
* differentiate between a String and an image.
*/
public class Image {
public final String filePath;
public Image(String filePath) {
this.filePath = filePath;
}
}
|