Ejemplo n.º 1
0
 public Tile(char glyph, int position, LetterColor color = LetterColor.Transparent)
 {
     Glyph    = glyph;
     Position = position;
     Color    = color;
 }
Ejemplo n.º 2
0
 public Letter(char glyph, LetterColor color = LetterColor.Transparent)
 {
     Glyph = glyph;
     Color = color;
 }