(final String path)
| 124 | } |
| 125 | |
| 126 | @Override |
| 127 | public ISkinImage getUnskinnedIcon(final String path) { |
| 128 | if (isGuiThread()) { |
| 129 | return new FTextureImage(Forge.getAssets().getTexture(Gdx.files.absolute(path))); |
| 130 | } |
| 131 | |
| 132 | //use a delay load image to avoid an error if called from background thread |
| 133 | return new FDelayLoadImage(path); |
| 134 | } |
| 135 | |
| 136 | @Override |
| 137 | public ISkinImage getCardArt(final PaperCard card, final boolean backFace) { |
nothing calls this directly
no test coverage detected