blob: 0aab043716228fe592dbf300fd1c9432fdfac5ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package cc.polyfrost.oneconfig.renderer;
/**
* Data class storing an SVG 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 SVG image.
*/
public class SVG {
public final String filePath;
public SVG(String filePath) {
this.filePath = filePath;
}
}
|