package org.andengine.entity.primitive.vbo; import org.andengine.entity.primitive.Rectangle; import org.andengine.opengl.vbo.IVertexBufferObject; /** * (c) Zynga 2012 * * @author Nicolas Gramlich <ngramlich@zynga.com> * @since 18:48:14 - 28.03.2012 */ public interface IRectangleVertexBufferObject extends IVertexBufferObject { // =========================================================== // Constants // =========================================================== // =========================================================== // Methods // =========================================================== public void onUpdateColor(final Rectangle pRectangle); public void onUpdateVertices(final Rectangle pRectangle); }