Twidere-App-Android-Twitter.../twidere/src/main/java/it/sephiroth/android/library/imagezoom/graphics/IBitmapDrawable.java

16 lines
313 B
Java
Raw Normal View History

2014-07-03 07:48:39 +02:00
package it.sephiroth.android.library.imagezoom.graphics;
import android.graphics.Bitmap;
import it.sephiroth.android.library.imagezoom.ImageViewTouchBase;
/**
* Base interface used in the {@link ImageViewTouchBase} view
*
* @author alessandro
*/
public interface IBitmapDrawable {
Bitmap getBitmap();
}