16 lines
242 B
JavaScript
16 lines
242 B
JavaScript
/**
|
|
* Represents one game move.
|
|
*/
|
|
class Move {
|
|
/**
|
|
* @param {Number} human
|
|
* @param {Number} robot
|
|
*/
|
|
constructor(human, robot) {
|
|
this.human = human;
|
|
this.robot = robot;
|
|
}
|
|
}
|
|
|
|
export default Move;
|