I had a problem on this matter, I'm using Eclipse with JDK 6.0 How can I resolve this problem:
Here's my code
public void processLevel(){
OBJ tempObjects;
if(mygfx.getBackPos() % 25 == 0){
tempObjects = new EnemyDrone(rndGenerator.nextInt() % Graphics.getScreenWidth(), 0 );
tempObjects.setY(tempObjects.getY() - tempObjects.getmybitmap().getHeight() + 3);
gameObjects.addElement(tempObjects);
}
}
the error says that "The method getScreenWidth() from the type Graphics is deprecated"
Thanks in advance guys.!!