00001 /* 00002 * To change this template, choose Tools | Templates 00003 * and open the template in the editor. 00004 */ 00005 package org.classroomgaming.cgp; 00006 00011 public interface Configurator { 00012 00013 public String getParameter(String name); 00014 00015 public int getHeight(); 00016 00017 public int getWidth(); 00018 00019 public ImageLoader getImageLoader(); 00020 00021 }
1.5.8