Rename the glyphs

This commit is contained in:
Marc Di Luzio 2020-07-19 11:56:05 +01:00
parent f665436007
commit 7e41ac0028
7 changed files with 52 additions and 52 deletions

View file

@ -7,21 +7,21 @@ const (
// GlyphNone is a keyword for nothing
GlyphNone = Glyph(0)
// GlyphRock is solid rock ground
GlyphRock = Glyph('-')
// GlyphGroundRock is solid rock ground
GlyphGroundRock = Glyph('-')
// GlyphGravel is loose rocks
GlyphGravel = Glyph(':')
// GlyphGroundGravel is loose rocks
GlyphGroundGravel = Glyph(':')
// GlyphSand is sand
GlyphSand = Glyph('~')
// GlyphGroundSand is sand
GlyphGroundSand = Glyph('~')
// GlyphRover represents a live rover
GlyphRover = Glyph('R')
// GlyphRoverLive represents a live rover
GlyphRoverLive = Glyph('R')
// GlyphSmallRock is a small stashable rock
GlyphSmallRock = Glyph('o')
// GlyphRockSmall is a small stashable rock
GlyphRockSmall = Glyph('o')
// GlyphLargeRock is a large blocking rock
GlyphLargeRock = Glyph('O')
// GlyphRockLarge is a large blocking rock
GlyphRockLarge = Glyph('O')
)