pixelplanet/src/core/Player.js
2020-01-04 07:00:47 +01:00

17 lines
170 B
JavaScript

/* @flow */
class Player {
wait: ?number; // date
constructor() {
this.wait = null;
}
setWait(wait) {
this.wait = wait;
}
}
export default Player;