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