New static method to return default card image

This will be used in deck import card preview (default state)

Signed-off-by: leriomaggio <valeriomaggio@gmail.com>
This commit is contained in:
leriomaggio
2021-09-12 10:30:42 +01:00
parent c0059c351f
commit b5bb07c827

View File

@@ -397,4 +397,6 @@ public class ImageCache {
public static boolean isDefaultImage(BufferedImage image) {
return _defaultImage.equals(image);
}
public static BufferedImage getDefaultImage() { return _defaultImage; }
}