Bug 18: Separated SpriteBatch and BitmapFont and Texture
This commit is contained in:
parent
ac7eb2e78b
commit
099ac6d87d
@ -228,7 +228,7 @@ public class FileImpl implements File {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FileSystem getFileSystem() {
|
public FileSystem getFileSystem() {
|
||||||
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
return fs;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ import com.pixelgamelibrary.api.files.File;
|
|||||||
*/
|
*/
|
||||||
public interface TextureFactory {
|
public interface TextureFactory {
|
||||||
Texture create(String assetPath);
|
Texture create(String assetPath);
|
||||||
Texture create(File fileHandle);
|
Texture create(File file);
|
||||||
Texture create(Pixmap pixmap);
|
Texture create(Pixmap pixmap);
|
||||||
Texture create(int width, int height);
|
Texture create(int width, int height);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user