mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
save/load/removeを追加
This commit is contained in:
parent
2154e67178
commit
93d1fa3f19
|
@ -2,6 +2,7 @@ package one.nem.lacerta.source.file;
|
||||||
|
|
||||||
import android.graphics.Bitmap;
|
import android.graphics.Bitmap;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -15,4 +16,8 @@ public interface FileManager {
|
||||||
void createDir(String dirName);
|
void createDir(String dirName);
|
||||||
void removeDir(String dirName);
|
void removeDir(String dirName);
|
||||||
|
|
||||||
|
void saveBitmap(Path path, Bitmap bitmap);
|
||||||
|
Bitmap loadBitmap(Path path);
|
||||||
|
void removeBitmap(Path path);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user