rove/pkg/atlas/glyph.go

28 lines
595 B
Go
Raw Normal View History

package atlas
// Glyph represents the text representation of something in the game
type Glyph byte
const (
// GlyphNone is a keyword for nothing
GlyphNone = Glyph(0)
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')
)