pokie
Version:
A server-side video slot game logic framework for JavaScript and TypeScript.
26 lines • 717 B
JavaScript
class SimulationConfig {
constructor() {
this.numberOfRounds = SimulationConfig.DEFAULT_NUMBER_OF_ROUNDS;
}
setNumberOfRounds(value) {
this.numberOfRounds = value;
}
getNumberOfRounds() {
return this.numberOfRounds;
}
setPlayStrategy(playStrategy) {
this.playStrategy = playStrategy;
}
getPlayStrategy() {
return this.playStrategy;
}
setChangeBetStrategy(changeBetStrategy) {
this.changeBetStrategy = changeBetStrategy;
}
getChangeBetStrategy() {
return this.changeBetStrategy;
}
}
SimulationConfig.DEFAULT_NUMBER_OF_ROUNDS = 1000;
export { SimulationConfig };
//# sourceMappingURL=SimulationConfig.js.map