bacsim
Version:
a baccarat simulator.
20 lines (19 loc) • 614 B
TypeScript
import { Card } from "cardation";
import PayoutTable from "../settle/PayoutTable";
import GameRule from "./GameRule";
declare type Config = {
gameRules?: GameRule;
payoutTable?: PayoutTable;
shouldDetectShoe?: boolean;
isTryrun?: boolean;
shouldCutShoe?: boolean;
shouldUseBlackCard?: boolean;
shouldBurnCard?: boolean;
shouldShuffleWhileCollectBankerHand?: boolean;
shouldShuffle?: boolean;
shouldGenerateRoad?: boolean;
shouldGenerateSmallRoad?: boolean;
shouldGenerateOtherRoad?: boolean;
customizedShoe?: Card[];
};
export default Config;