uwcse.animation
Interface Actor


public interface Actor


Method Summary
 void addTo(uwcse.graphics.GWindow w)
          Every Actor must be able to draw itself on a GWindow.
 void doAction(Stage stage)
          Every Actor must implement some fundamental action.
 void removeFromWindow()
          Every Actor must be able to remove itself from its GWindow.
 

Method Detail

addTo

public void addTo(uwcse.graphics.GWindow w)
Every Actor must be able to draw itself on a GWindow.

doAction

public void doAction(Stage stage)
Every Actor must implement some fundamental action.
Parameters:
stage - the stage on which the actor is performing.

removeFromWindow

public void removeFromWindow()
Every Actor must be able to remove itself from its GWindow.