(File p_writeFile_0_, String p_writeFile_1_)
| 1844 | } |
| 1845 | |
| 1846 | public static void writeFile(File p_writeFile_0_, String p_writeFile_1_) throws IOException { |
| 1847 | FileOutputStream fileoutputstream = new FileOutputStream(p_writeFile_0_); |
| 1848 | byte[] abyte = p_writeFile_1_.getBytes(StandardCharsets.US_ASCII); |
| 1849 | fileoutputstream.write(abyte); |
| 1850 | fileoutputstream.close(); |
| 1851 | } |
| 1852 | |
| 1853 | public static TextureMap getTextureMap() { |
| 1854 | return getMinecraft().getTextureMapBlocks(); |
no test coverage detected