/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package armyc2.c2sd.graphics2d; import java.io.InputStream; /** * * @author Michael Deutch */ public final class ImageIO { public static BufferedImage read(InputStream stream) { return null; } }