mmb.menu.Icons Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multimachinebuilder Show documentation
Show all versions of multimachinebuilder Show documentation
Dependency for the MultiMachineBuilder, a voxel game about building an industrial empire in a finite world.
THIS RELEASE IS NOT PLAYABLE. To play the game, donwload from >ITCH.IO LINK HERE< or >GH releases link here<
The newest version!
/**
*
*/
package mmb.menu;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import mmb.NN;
import mmb.engine.texture.Textures;
/**
* A collection of text and image icons for GUIs
* @author oskar
*/
public class Icons {
private Icons() {}
@NN public static final String refresh = "🗘";
@NN public static final String drop = "🠋";
@NN public static final String pick = "🠉";
@NN public static final Icon insertitems = new ImageIcon(Textures.get("UIs/dropoff.png"));
@NN public static final String unsel = "―";
@NN public static final String grid = "⋮⋮⋮";
@NN public static final String list = "☰";
@NN public static final String encode = "⟵";
@NN public static final String decode = "⟶";
@NN public static final String erase = "🞪";
@NN public static final String craft = "<<<";
@NN public static final String activate = "!!!";
}