Create a GUI library
This commit is contained in:
parent
31a08de2fe
commit
e457f3e1e5
3 changed files with 12 additions and 0 deletions
6
gui/Cargo.toml
Normal file
6
gui/Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[package]
|
||||||
|
name = "gui"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2024"
|
||||||
|
|
||||||
|
[dependencies]
|
3
gui/src/lib.rs
Normal file
3
gui/src/lib.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
pub trait Draw {
|
||||||
|
fn draw(&self);
|
||||||
|
}
|
|
@ -1,5 +1,8 @@
|
||||||
{
|
{
|
||||||
"folders": [
|
"folders": [
|
||||||
|
{
|
||||||
|
"path": "./gui"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"path": "./stream-composition"
|
"path": "./stream-composition"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue