Subversion Repositories distributed

Rev

Rev 44 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
44 daniel-mar 1
package de.viathinksoft.marschall.raumplan.fraktal3d;
22 daniel-mar 2
import com.jme.app.SimpleGame;
3
import com.jme.math.Vector3f;
4
 
44 daniel-mar 5
public class RaumplanFraktal3D extends SimpleGame {
22 daniel-mar 6
 
7
        @Override
8
        protected void simpleInitGame() {
9
                cam.setLocation(new Vector3f(0, 50, 150));
44 daniel-mar 10
                new Kubus(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) {
44 daniel-mar 17
                RaumplanFraktal3D ball = new RaumplanFraktal3D();
47 daniel-mar 18
                ball.setConfigShowMode(ConfigShowMode.AlwaysShow);
22 daniel-mar 19
                ball.start();
20
        }
21
}