Subversion Repositories distributed

Rev

Rev 32 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
22 daniel-mar 1
package test.fraktal3d;
2
import com.jme.app.SimpleGame;
3
import com.jme.math.Vector3f;
4
 
5
public class BouncingBall extends SimpleGame {
6
 
7
        @Override
8
        protected void simpleInitGame() {
9
                cam.setLocation(new Vector3f(0, 50, 150));
43 daniel-mar 10
                new Raumplan(rootNode, 50, 25, 0, 0, 0, LockDirectoryEnum.LOCK_NOTHING, 1);
22 daniel-mar 11
        }
12
 
13
        /**
14
         * @param args
15
         */
16
        public static void main(String[] args) {
17
                BouncingBall ball = new BouncingBall();
43 daniel-mar 18
                ball.setConfigShowMode(ConfigShowMode.ShowIfNoConfig);
22 daniel-mar 19
                ball.start();
20
        }
21
}