diff options
Diffstat (limited to 'webapp/src/components/table.rs')
-rw-r--r-- | webapp/src/components/table.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webapp/src/components/table.rs b/webapp/src/components/table.rs index c8bdf6b..c1b4b47 100644 --- a/webapp/src/components/table.rs +++ b/webapp/src/components/table.rs @@ -3,11 +3,13 @@ use crate::components::{BiddingBox, BiddingTable, Hand, TrickInPlay, HandDiagram use crate::{services, use_app_context}; use futures::FutureExt; use log::info; +use protocol::actions::Bid; use protocol::bridge_engine::{ - Bid, BiddingStatePlayerView, GameStatePlayerView, PlayResult, - PlayStatePlayerView, Player, TableStatePlayerView, + BiddingStatePlayerView, GameStatePlayerView, PlayResult, + PlayStatePlayerView, TableStatePlayerView, }; use protocol::card::Card; +use protocol::core::Player; use yew::prelude::*; #[derive(PartialEq, Properties, Clone)] |