package com.thomshutt.fappybird;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.thomshutt.fappybird.drawable.Bird;
public interface Drawable {
public void tick(float deltaTime);
public void draw(SpriteBatch batch);
public void resize(int width, int height);
public void screenTouched(boolean touched);
public boolean isInCollisionWith(Bird bird);
}