Update library when changes to the DB are made and open manga detail activity

This commit is contained in:
inorichi
2015-09-26 18:58:01 +02:00
parent 8b6bdfdfdc
commit e567bc753f
7 changed files with 114 additions and 37 deletions
@@ -0,0 +1,10 @@
package eu.kanade.mangafeed.view;
import java.util.ArrayList;
import eu.kanade.mangafeed.data.models.Manga;
public interface LibraryView extends BaseView {
void setMangas(ArrayList<Manga> mangas);
}