pokie
Version:
A server-side video slot game logic framework for JavaScript and TypeScript.
10 lines • 356 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PlayUntilAnyWinStrategy = void 0;
class PlayUntilAnyWinStrategy {
canPlayNextSimulationRound(session) {
return session.getWinAmount() === 0;
}
}
exports.PlayUntilAnyWinStrategy = PlayUntilAnyWinStrategy;
//# sourceMappingURL=PlayUntilAnyWinStrategy.js.map