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

package control;

import java.awt.Graphics;

/**
 *
 * @author Home
 */
public class TextSprite extends Sprite
{
    
    /** Creates a new instance of TextSprite */
    public TextSprite( Screen graph )
    {
        // constructor
        super( "", graph );
    }

    protected void paint(Graphics g1)
    {
        super.paint(g1);
    }
    
}
