predictor/source/Move.js
Anton Vakhrushev 1c96ea31ad Add Move class
2018-06-05 13:36:39 +03:00

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;
}
}