Create a GUI library

This commit is contained in:
Manuel Thalmann 2025-04-11 19:47:06 +02:00
parent 31a08de2fe
commit e457f3e1e5
Signed by: manuth
SSH key fingerprint: SHA256:HsMLC+7kJWALP6YCYCoopxNbUnghwSGLVcG76SECT5c
3 changed files with 12 additions and 0 deletions

6
gui/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "gui"
version = "0.1.0"
edition = "2024"
[dependencies]

3
gui/src/lib.rs Normal file
View file

@ -0,0 +1,3 @@
pub trait Draw {
fn draw(&self);
}

View file

@ -1,5 +1,8 @@
{
"folders": [
{
"path": "./gui"
},
{
"path": "./stream-composition"
},