summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/java/it/sephiroth/android/library/imagezoom/graphics/IBitmapDrawable.java
blob: 5a2892a74c0bfb4d074aa6efd4d73431638ecec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package it.sephiroth.android.library.imagezoom.graphics;

import it.sephiroth.android.library.imagezoom.ImageViewTouchBase;
import android.graphics.Bitmap;

/**
 * Base interface used in the {@link ImageViewTouchBase} view
 * @author alessandro
 *
 */
public interface IBitmapDrawable {

	Bitmap getBitmap();
}