Skip to content

Commit

Permalink
Added blanket impl for ClassicGame
Browse files Browse the repository at this point in the history
  • Loading branch information
maxfierrog committed Apr 11, 2024
1 parent 65ea8f8 commit 6573e2c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/game/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,15 @@ where
}
}

impl<G> SimpleSum<2> for G
where
G: ClassicGame,
{
fn utility(&self, state: State) -> [SimpleUtility; 2] {
todo!()
}
}

impl<G> SimpleSum<1> for G
where
G: ClassicPuzzle,
Expand Down

0 comments on commit 6573e2c

Please sign in to comment.