Код гадалки Шеннона перенесен в проект
This commit is contained in:
15
source/_assets/predictor/Move.js
Normal file
15
source/_assets/predictor/Move.js
Normal 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;
|
Reference in New Issue
Block a user