Class Index | File Index

Classes


Class Entry

Represents Game Record Entry
Defined in: rec02.js.

Class Summary
Constructor Attributes Constructor Name and Description
 
Entry()
Record Entry
Field Summary
Field Attributes Field Name and Description
 
turn BLACK or WHITE
 
x
column co-ordinate of move (1 origin)
 
y
row co-ordinate of move (1 origin)
Class Detail
Entry()
Record Entry
var e1 = new Entry(3, 4, BLACK);             // col = 3, row = 4, turn = BLACK
var e2 = new Entry(PASS, BLACK);             // means pass for BLACK
var e3 = new Entry(new Move(1, 2), WHITE);   // col = 1, row = 2, turn = WHITE
Since:
0.1
Field Detail
{Number} turn
turn BLACK or WHITE

{Number} x
column co-ordinate of move (1 origin)

{Number} y
row co-ordinate of move (1 origin)

Documentation generated by JsDoc Toolkit 2.4.0 on Mon Mar 31 2014 14:29:55 GMT+0900 (JST)