3D spaceshooter with online scoreboard, online demos, ship building. Now entirely defunct, but might be resurrected
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
sector/src/net/sector/level/sequence/HudMessage.java

25 lines
424 B

package net.sector.level.sequence;
/**
* HUD message object
*
* @author Ondřej Hruška (MightyPork)
*/
public class HudMessage {
/** Message text */
public String text = "";
/** Displayed secs */
public double secs = 3;
/**
* NMew HUD message
*
* @param text message text
* @param time time of dysplay (secs)
*/
public HudMessage(String text, double time) {
this.text = text;
secs = time;
}
}