com.huguesjohnson.tiamat.graphics
Interface Drawable

All Known Implementing Classes:
Dialog, Map, Sprite

public interface Drawable

Drawable - interface for objects that can be drawn

Author:
Hugues Johnson

Method Summary
 void draw()
          draw the entire object
 void draw(int x, int y)
          draw the entire object at location specified by (x,y)
 void draw(int x1, int y1, int x2, int y2)
          draw the object within the boundaries specified by (x1,y1) and (x2,y2)
 

Method Detail

draw

public void draw()
draw the entire object


draw

public void draw(int x,
                 int y)
draw the entire object at location specified by (x,y)


draw

public void draw(int x1,
                 int y1,
                 int x2,
                 int y2)
draw the object within the boundaries specified by (x1,y1) and (x2,y2)