ファイルマネージャにメソッド追加 WIP

This commit is contained in:
r-ca 2024-01-08 11:24:29 +09:00
parent 49775a1f49
commit 5a0b215626
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -20,6 +20,10 @@ public interface FileManager {
File createFile(String fileName);
void removeFile(String fileName);
boolean isExist(Path path);
void autoCreateDir(Path path);
void saveBitmapAtCurrent(Bitmap bitmap, String fileName);
Bitmap loadBitmap(Path path);
void removeBitmap(Path path);