Diff
Not logged in

Differences From Artifact [d4577900b4db97c1]:

To Artifact [9f0067d733f090c1]:


58 58 { 59 59 this.graphicContext = new MemoryGraphics(this.clientSize.width, this.clientSize.height); 60 60 this.setStyle(ControlStyles.OPAQUE, true); 61 61 this.font = new Font("MS Gothic", cell-2, GraphicsUnit.PIXEL); 62 62 this.backColor = Color(255,255,255); 63 63 this.colors['#'] = 64 64 this.colors['.'] = Color(255,191,127); 65 - this.colors['*'] = Color(255,127,127); 65 + this.colors['*'] = 66 + this.colors['@'] = Color(255,127,127); 66 67 this.colors['R'] = Color(128,128,0); 67 68 this.colors['d'] = Color(255,0,0); 68 69 this.colors['\\'] = 69 70 this.colors['L'] = 70 71 this.colors['O'] = Color(127,255,127); 71 72 this.colors['w'] = Color(204,229,255); 72 73 this.colors['W'] = 73 74 this.colors['!'] = Color(159,159,159); 74 75 foreach(char c; 'A'..'J') this.colors[c] = Color(142,142,255); 75 76 foreach(char c; '1'..':') this.colors[c] = Color(255,142,255); 76 77 this.render['#'] = "■"; 77 78 this.render['*'] = "✹"; 79 + this.render['@'] = "❁"; 78 80 this.render['.'] = "♒"; 79 81 this.render['\\'] = "λ"; 80 82 this.render['R'] = "☃"; 81 83 this.render['d'] = "☠"; 82 84 this.render['L'] = "☒"; 83 85 this.render['O'] = "☐"; 84 86 this.render['W'] = "ꔣ";