blob: 4e11e71e439185e4af891a1df8112acfa9b5a2fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
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());
}
}
|