[][src]Trait oxymcts::Playout

pub trait Playout<State> {
    type Args;
    fn playout(state: State, args: Self::Args) -> State;
}

Associated Types

type Args

Loading content...

Required methods

fn playout(state: State, args: Self::Args) -> State

Plays the state to have a final state.

Loading content...

Implementors

impl<T: GameTrait> Playout<T> for DefaultPlayout[src]

type Args = ()

Loading content...