poker/index.js
2024-05-16 15:04:05 +07:00

20 lines
415 B
JavaScript

import Table from "./@core/table";
const main = new Table(1000);
main.addMember('koh');
main.addPlayer('koh');
main.addMember('koh1');
main.addPlayer('koh1');
main.playerAction('koh', 'call');
// main.playerAction('koh1', 'call');
//
// main.playerAction('koh', 'call');
// main.playerAction('koh1', 'call');
//
// main.playerAction('koh', 'call');
// main.playerAction('koh1', 'call');
// main.initNewRound();