hello everyone ,
i am need a developpement of the game with java mobile but i don't know how to start please if any one know how can create the canvas with ball moved with a raquet tell me see the picture in joint
hello everyone ,
i am need a developpement of the game with java mobile but i don't know how to start please if any one know how can create the canvas with ball moved with a raquet tell me see the picture in joint
We will program an applet in which a ball is moving from the left to the right hand side. I know this is nothing BIG but if you want to learn how to program games it is maybe the most important thing to understand how to animate objects!
At the beginning we have to write our basic structure of an applet again but we will add two little things. Our applet has to implement the interface Runnable and the corrosponding method run() to animate a object. The structure of the applet should look like this:
import java.applet.*;
import java.awt.*;
public class BallApplet extends Applet implements Runnable
{
public void init() { }
public void start() { }
public void stop() { }
public void destroy() { }
public void run () { }
public void paint (Graphics g) { }
}
More information here: http://www.javacooperation.gmxhome.d...wegungEng.html
if you know some link or web site have tutorial the game programmin on J2ME please tell me
THANKS
Thread title edited.
LOOK FOR VARIOUS WINDOWS SOFTWARE'S AND NETWORKING & SECURITY SOLUTIONS OVER HERE
i don't understand please help me
thanks
Bookmarks