summaryrefslogtreecommitdiff
path: root/src/tesseract/objects/remote/TankMenuItem.java
blob: 317c0fc02d528e660ccc0e75155669b210134795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package tesseract.objects.remote;

import javax.vecmath.Vector3f;

import tesseract.objects.tank.Tank;

public class TankMenuItem extends RemoteObjectMenuItem {
	public TankMenuItem(final RemoteObjectMenu theMenu) {
		super("Tank", theMenu);
	}

	@Override
	protected RemoteObject createRemoteObject() {
		return new Tank(new Vector3f(), 1);
	}
}