1   /*
2    * Created on 2004-12-20
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
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 TestMovableObject extends MovableObject {
16  
17  	/***
18  	 * 
19  	 */
20  	public TestMovableObject() {
21  		super();
22  		// TODO Auto-generated constructor stub
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  }