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