summaryrefslogtreecommitdiff
path: root/src/tesseract/objects/remote/BlimpMenuItem.java
blob: ccd8f9c3341e6e97203c3834dc7c7767c32b9299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package tesseract.objects.remote;

import javax.vecmath.Vector3f;

import tesseract.objects.blimp.Blimp;
import tesseract.objects.tank.Tank;

public class BlimpMenuItem extends RemoteObjectMenuItem {
	
	
	public BlimpMenuItem(final RemoteObjectMenu theMenu) {
		super("Blimp", theMenu);
		
	}

	@Override
	protected RemoteObject createRemoteObject() {
		return new Blimp(new Vector3f(), .7f);
	} 
}