diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-12-18 12:38:13 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-12-18 12:38:13 -0500 |
commit | e7167b17d96cea1c31ca77e36cc0248c18b818c6 (patch) | |
tree | 0f2c4bd1bdafb72164431526e610a297f3c0c43a /protocol/src/simple_bots.rs | |
parent | b5940c3ae2b6e23a6373383d5d78958fb23cb611 (diff) |
Implement advance_play for passing bidding bot
Diffstat (limited to 'protocol/src/simple_bots.rs')
-rw-r--r-- | protocol/src/simple_bots.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/src/simple_bots.rs b/protocol/src/simple_bots.rs index f5be424..b7986b6 100644 --- a/protocol/src/simple_bots.rs +++ b/protocol/src/simple_bots.rs @@ -2,7 +2,7 @@ use async_trait::async_trait; use crate::{bot::BiddingBot, bridge_engine::{BiddingStatePlayerView, Bid}}; -struct AlwaysPassBiddingBot {} +pub struct AlwaysPassBiddingBot {} #[async_trait] impl BiddingBot for AlwaysPassBiddingBot { |