pokie
Version:
A server-side video slot game logic framework for JavaScript and TypeScript.
10 lines (6 loc) • 311 B
text/typescript
import {BetForNextSimulationRoundSetting, NextSessionRoundPlayableDetermining} from "pokie";
export interface SimulationConfigDescribing {
getNumberOfRounds(): number;
getPlayStrategy(): NextSessionRoundPlayableDetermining;
getChangeBetStrategy(): BetForNextSimulationRoundSetting | undefined;
}