Repository実装

This commit is contained in:
ろむねこ 2023-12-21 14:44:36 +09:00 committed by r-ca
parent effdd8e9f3
commit c90715b0f5
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -1,7 +1,13 @@
package one.nem.lacerta.source.file;
import android.graphics.Bitmap;
import org.eclipse.jgit.lib.Repository;
public interface RepoFileManager {
void
void initRepoDir();
void addImageByIndex(Bitmap bitmap, int index);
void deleteImageByIndex(int index);
}