/*
 * Paintable.java
 *
 * Created on June 14, 2007, 2:24 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package control;

import java.awt.Graphics2D;

/**
 *
 * @author Home
 */
public interface Paintable
{
    public void paint( Graphics2D g );
    
}
