summaryrefslogtreecommitdiff
path: root/src/tesseract/objects/remote/BlimpMenuItem.java
blob: 1449c9c3680f062c5f5d1ffb39207974a5f9fbe3 (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(), 1f);
	} 
}