Check-in [d782a7db12]
Not logged in
Overview
SHA1 Hash:d782a7db129de09b86bee1fee956f3837d581e9c
Date: 2012-07-15 03:16:22
User: kinaba
Comment:More cute glyph.
Timelines: family | ancestors | descendants | both | trunk
Diffs: redesign
Downloads: Tarball | ZIP archive
Other Links: files | file ages | manifest
Tags And Properties
Changes

Modified src/gui.d from [8a1eba48f0346eec] to [19a06a471eb23a83].

77 77 this.render['\\'] = "λ"; 78 78 this.render['R'] = "☃"; 79 79 this.render['d'] = "☠"; 80 80 this.render['L'] = "☒"; 81 81 this.render['O'] = "☐"; 82 82 foreach(c,tp; g.map.tr_target) { 83 83 char d = g.map[tp]; 84 - this.render[c] = [cast(dchar)('㋀'+d-'1')].to!string(); 84 + this.render[c] = [cast(dchar)('☢'+d-'1')].to!string();/*㋀㏠*/ 85 85 } 86 - foreach(char c; '1'..':') this.render[c] = [cast(dchar)('㏠'+c-'1')].to!string(); 86 + foreach(char c; '1'..':') this.render[c] = [cast(dchar)('☢'+c-'1')].to!string(); 87 87 this.paint ~= (Control c, PaintEventArgs ev) { 88 88 graphicContext.copyTo(ev.graphics, Rect(0,0,this.clientSize.width,this.clientSize.height)); 89 89 }; 90 90 } 91 91 92 92 void draw(in Game g) 93 93 {