diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-09-22 09:18:28 -0400 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-09-22 09:18:28 -0400 |
commit | 6a11eedc3df00c88bdf5fcb004f2afd4fa3dc49f (patch) | |
tree | 4bea89265ec0bd4126e020d1106681d92345387a /webapp/src/components/trick_in_play.rs | |
parent | 030b45c000210b153b5ef224ddcaa668de763638 (diff) |
Rename bridge_engine names for consistency
Diffstat (limited to 'webapp/src/components/trick_in_play.rs')
-rw-r--r-- | webapp/src/components/trick_in_play.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/src/components/trick_in_play.rs b/webapp/src/components/trick_in_play.rs index 086a422..c034d20 100644 --- a/webapp/src/components/trick_in_play.rs +++ b/webapp/src/components/trick_in_play.rs @@ -1,5 +1,5 @@ use yew::prelude::*; -use crate::bridge_engine::PlayTurn; +use crate::bridge_engine::TurnInPlay; use crate::components::Card; #[function_component(TrickInPlay)] @@ -19,5 +19,5 @@ html! { #[derive(PartialEq, Properties, Clone)] pub struct TrickInPlayProps { - pub in_progress: PlayTurn, + pub in_progress: TurnInPlay, } |