1
2
3
4
5
6
7 package org.sourceforge.jvb3d.Model;
8
9 /***
10 * @author serwis
11 *
12 * TODO To change the template for this generated type comment go to
13 * Window - Preferences - Java - Code Style - Code Templates
14 */
15 public class TestControlableObject extends ControlableObject {
16
17 /***
18 *
19 */
20 public TestControlableObject() {
21 super();
22
23 }
24 public float getRotation(){
25 return this.rotation;
26 }
27 public void setRotation(float rotation){
28 this.rotation=rotation;
29 }
30 public float getSpeed(){
31 return this.speed;
32 }
33 public void setSpeed(float speed){
34 this.speed=speed;
35 }
36 public float getStrafeSpeed(){
37 return this.strafeSpeed;
38 }
39 public void setStrafeSpeed(float speed){
40 this.strafeSpeed=speed;
41 }
42 }