pixelplanet/src/core/Player.js
2020-01-02 17:58:06 +01:00

16 lines
169 B
JavaScript

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