rove/pkg/atlas/glyph.go

25 lines
533 B
Go
Raw Normal View History

package atlas
// Glyph represents the text representation of something in the game
type Glyph byte
const (
2020-07-19 11:56:05 +01:00
// GlyphGroundRock is solid rock ground
GlyphGroundRock = Glyph('-')
2020-07-19 11:56:05 +01:00
// GlyphGroundGravel is loose rocks
GlyphGroundGravel = Glyph(':')
2020-07-19 11:56:05 +01:00
// GlyphGroundSand is sand
GlyphGroundSand = Glyph('~')
2020-07-19 11:56:05 +01:00
// GlyphRoverLive represents a live rover
GlyphRoverLive = Glyph('R')
2020-07-19 11:56:05 +01:00
// GlyphRockSmall is a small stashable rock
GlyphRockSmall = Glyph('o')
2020-07-19 11:56:05 +01:00
// GlyphRockLarge is a large blocking rock
GlyphRockLarge = Glyph('O')
)