Bug 18: Separated SpriteBatch and BitmapFont and Texture

This commit is contained in:
Robert Vokac 2024-10-12 11:53:40 +02:00
parent ac7eb2e78b
commit 099ac6d87d
Signed by: robertvokac
GPG Key ID: FB9CE8E20AADA55F
2 changed files with 2 additions and 2 deletions

View File

@ -228,7 +228,7 @@ public class FileImpl implements File {
@Override
public FileSystem getFileSystem() {
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
return fs;
}
}

View File

@ -28,7 +28,7 @@ import com.pixelgamelibrary.api.files.File;
*/
public interface TextureFactory {
Texture create(String assetPath);
Texture create(File fileHandle);
Texture create(File file);
Texture create(Pixmap pixmap);
Texture create(int width, int height);
}