15 lines
248 B
JavaScript
15 lines
248 B
JavaScript
export default class Move {
|
|
constructor(human, robot) {
|
|
this._human = human ? 1 : 0;
|
|
this._robot = robot ? 1 : 0;
|
|
}
|
|
|
|
get human() {
|
|
return this._human;
|
|
}
|
|
|
|
get robot() {
|
|
return this._robot;
|
|
}
|
|
}
|