From 191bccc3d1dfb7ca728df47ae75cfb12fcaee183 Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 17 Mar 2011 05:22:42 +0000 Subject: added Jopup fix for menu in remote menu added controls to blimp removed blimp creating from ui changeed Blimpbox to get the primitive for orientation based on phil's design --- src/tesseract/objects/remote/BlimpMenuItem.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/tesseract/objects/remote/BlimpMenuItem.java (limited to 'src/tesseract/objects/remote/BlimpMenuItem.java') diff --git a/src/tesseract/objects/remote/BlimpMenuItem.java b/src/tesseract/objects/remote/BlimpMenuItem.java new file mode 100644 index 0000000..1449c9c --- /dev/null +++ b/src/tesseract/objects/remote/BlimpMenuItem.java @@ -0,0 +1,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); + } +} \ No newline at end of file -- cgit v1.2.3