pixelplanet/src/core/Player.js

17 lines
170 B
JavaScript
Raw Normal View History

2020-01-02 16:58:06 +00:00
/* @flow */
class Player {
wait: ?number; // date
constructor() {
this.wait = null;
}
2020-01-04 06:00:47 +00:00
2020-01-02 16:58:06 +00:00
setWait(wait) {
this.wait = wait;
}
}
export default Player;