/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package tetris2;
import java.io.Serializable;
/**
 *
 * @author Fmunch
 */
public interface GameType<T>  extends Comparable<T>, Serializable
{
    boolean initialize(String type);
    boolean isEmpty();
    String getInitFormat();
}

