projects
/
xogo.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
New variant idea
[xogo.git]
/
utils
/
PiPo.js
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
// class "PiPo": Piece + Position
2
export default class PiPo {
3
4
// o: {piece[p], color[c], posX[x], posY[y]}
5
constructor(o) {
6
this.p = o.p;
7
this.c = o.c;
8
this.x = o.x;
9
this.y = o.y;
10
}
11
12
};