mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 01:33:16 +00:00
save/load/removeを追加 Impl WIP
This commit is contained in:
parent
93d1fa3f19
commit
302eccfdfe
|
@ -82,4 +82,18 @@ public class FileManagerImpl implements FileManager {
|
|||
public void removeDir(String dirName) {
|
||||
currentDir.resolve(dirName).toFile().delete(); // TODO-rca: エラーハンドリング
|
||||
}
|
||||
|
||||
@Override
|
||||
public void saveBitmap(Path path, Bitmap bitmap) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public Bitmap loadBitmap(Path path) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeBitmap(Path path) {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user