/*

	Interface Artiste.java
	by Richard Unger, March 1998

	This interface allows any object that wants to draw to our canvas to do
	so in a standardized way. The object implements the Artiste interface,
	and draws everything to the (offscreen) buffer in its doDraw() method.
	It registers itself with the canvas when it wants to receive draw events
	using the RoboConvas AddArtiste() method.

*/

public interface Artiste {

	public void doDraw(RoboCanvas c);


}