This website requires JavaScript.
Explore
Help
Sign In
savanni
/
monorepo
Watch
1
Star
0
Fork
You've already forked monorepo
0
Code
Issues
71
Pull Requests
Projects
6
Releases
Wiki
Activity
ea02e614dd
monorepo
/
kifu
/
kifu-core
/
src
/
ui
/
mod.rs
5 lines
84 B
Rust
Raw
Normal View
History
Unescape
Escape
Make the connection between the core and the gtk app Set up the core run loop and the GTK loop. To make this work, I'm taking direct control of the Tokio runtime. Since the GTK thread wants to be the main one, it's easier to manually spawn the runtime handlers and to spawn new tasks to handle communication with the core. I added a basic struct to own the runtime, the core, and communication between the core and GTK
2023-03-20 12:16:20 +00:00
pub
mod
playing_field
;
Add a basic rendering for a player card
2023-03-22 14:59:44 +00:00
mod
types
;
Render the chat element (#34) Closes: - [Render the chat](https://www.pivotaltracker.com/story/show/184743852) Co-authored-by: Savanni D'Gerinel <savanni@luminescent-dreams.com> Reviewed-on: https://git.luminescent-dreams.com/savanni/tools/pulls/34
2023-03-23 03:11:56 +00:00
pub
use
types
::
{
ChatElement
,
PlayerCardElement
}
;