Код гадалки Шеннона перенесен в проект

This commit is contained in:
2019-04-14 21:20:59 +03:00
parent c6200a3d74
commit f585b103c1
10 changed files with 432 additions and 9 deletions

View File

@ -0,0 +1,15 @@
/**
* Represents one game move.
*/
class Move {
/**
* @param {Number} human
* @param {Number} robot
*/
constructor(human, robot) {
this.human = human;
this.robot = robot;
}
}
export default Move;