--- Games-Go-SimpleBoard/SimpleBoard.pm 2008/06/24 19:22:08 1.5 +++ Games-Go-SimpleBoard/SimpleBoard.pm 2008/06/24 23:19:24 1.6 @@ -19,6 +19,7 @@ MARK_TRIANGLE # triangle mark MARK_SQUARE # square mark MARK_CIRCLE # circle mark + MARK_CROSS # cross mark MARK_SMALL_B # small stone, used for scoring or marking MARK_SMALL_W # small stone, used for scoring or marking MARK_B # normal black stone @@ -73,6 +74,7 @@ sub MARK_HOSHI (){ 0x0200 } # this is a hoshi point (not used much) sub MARK_MOVE (){ 0x0400 } # this is a regular move sub MARK_KO (){ 0x0800 } # this is a ko position +sub MARK_CIRCLE (){ 0x1000 } sub MARK_REDRAW (){ 0x8000 } sub COLOUR_BLACK (){ 0 }