Implemented game info, play move, hover

This commit is contained in:
2012-04-17 23:11:49 -04:00
parent 8976349450
commit f6d89e7ae2
3 changed files with 71 additions and 37 deletions

View File

@ -272,10 +272,10 @@ class Goban:
code = 'w'
if pos == self.last_move:
code = code + 'T'
code += 'C'
if pos == self.ko:
code = code + 'C'
code += 'C'
return code