24 lines
310 B
Java
24 lines
310 B
Java
package com.tridium.gx;
|
|
|
|
import javax.baja.gx.Graphics;
|
|
|
|
public interface ImagePeer {
|
|
boolean animate();
|
|
|
|
void dispose();
|
|
|
|
Graphics getGraphics();
|
|
|
|
double getHeight();
|
|
|
|
int[] getPixels();
|
|
|
|
double getWidth();
|
|
|
|
boolean isLoaded();
|
|
|
|
void setPixels(int[] iArr);
|
|
|
|
void sync();
|
|
}
|