You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Animation.java 170B

12345678
  1. package com.feemers.android.fftdrawer;
  2. import android.graphics.Canvas;
  3. public interface Animation {
  4. void Draw(Canvas canvas);
  5. void SetBackgroundColor(int c);
  6. }