pokie
Version:
A server-side video slot game logic framework for JavaScript and TypeScript.
14 lines (13 loc) • 721 B
TypeScript
import { BetForNextSimulationRoundSetting, SimulationConfigRepresenting, NextSessionRoundPlayableDetermining } from "pokie";
export declare class SimulationConfig implements SimulationConfigRepresenting {
static readonly DEFAULT_NUMBER_OF_ROUNDS: number;
private numberOfRounds;
private changeBetStrategy?;
private playStrategy;
setNumberOfRounds(value: number): void;
getNumberOfRounds(): number;
setPlayStrategy(playStrategy: NextSessionRoundPlayableDetermining): void;
getPlayStrategy(): NextSessionRoundPlayableDetermining;
setChangeBetStrategy(changeBetStrategy: BetForNextSimulationRoundSetting): void;
getChangeBetStrategy(): BetForNextSimulationRoundSetting | undefined;
}