/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package jo.util.jgl.obj; import java.util.logging.Logger; public class JGLObjBitmapImpl extends JGLObjBitmap { private static final Logger LOG = Logger.getLogger(JGLObjBitmapImpl.class.getName()); public JGLObjBitmapImpl(int imageID, int left, int top, int width, int height) { super(imageID, left, top, width, height); } }