diff options
Diffstat (limited to 'src/tesseract/menuitems/GravityMenuItem.java')
-rw-r--r-- | src/tesseract/menuitems/GravityMenuItem.java | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/tesseract/menuitems/GravityMenuItem.java b/src/tesseract/menuitems/GravityMenuItem.java deleted file mode 100644 index 4e11e71..0000000 --- a/src/tesseract/menuitems/GravityMenuItem.java +++ /dev/null @@ -1,38 +0,0 @@ -package tesseract.menuitems;
-
-import java.awt.event.ActionEvent;
-
-import tesseract.World;
-import tesseract.forces.Gravity;
-
-/**
- * Gravity Menu Item.
- *
- * @author Steve Bradshaw
- * @deprecated by Phillip Cardon
- */
-public class GravityMenuItem extends TesseractMenuItem {
-
- /**
- * Serial ID.
- */
- private static final long serialVersionUID = 1L;
-
- /**
- * Constructor for the menu item.
- *
- * @param theWorld The world into which we add.
- */
- public GravityMenuItem(final World theWorld) {
- super(theWorld, "Gravity");
- }
-
- /**
- * Action handler.
- *
- * @param arg0 Unused event info.
- */
- public void actionPerformed(final ActionEvent arg0) {
- myWorld.addForce(new Gravity());
- }
-}
|