1 2 3 4 5 6 7 8 9 10 11 12 13
use super::*; #[pqlfn] pub fn flop_hand_category( ctx: &PQLFnContext, player: PQLPlayer, ) -> PQLFlopHandCategory { core::flop_hand_category( ctx.game, ctx.get_player_slice(player), ctx.get_board(PQLStreet::Flop), ) }