Rogue: Savage Rats, a retro-themed dungeon crawler
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.
 
 
rogue-savage-rats/src/mightypork/rogue/world/tile/TileColors.java

22 lines
643 B

package mightypork.rogue.world.tile;
import mightypork.gamecore.util.math.color.Color;
import mightypork.gamecore.util.math.color.pal.RGB;
public class TileColors {
public static final Color NULL = RGB.NONE;
public static final Color FLOOR = RGB.GRAY_DARK;
public static final Color WALL = RGB.GRAY_LIGHT;
public static final Color DOOR = RGB.BROWN;
public static final Color COLLAPSED_WALL = RGB.GRAY;
public static final Color ENTRANCE = RGB.CYAN;
public static final Color EXIT = Color.fromHex(0x00EA8C);
public static final Color SECRET_DOOR_REVEALED = RGB.PINK;
public static final Color SECRET_DOOR_HIDDEN = WALL;
}