Init branch

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-22 20:31:38 +01:00
parent 6fe5bb6d60
commit 435d6c15be
8 changed files with 157 additions and 0 deletions

6
lib/Cargo.toml Normal file
View File

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

2
lib/src/lib.rs Normal file
View File

@@ -0,0 +1,2 @@
mod track;
mod region;

3
lib/src/region.rs Normal file
View File

@@ -0,0 +1,3 @@
struct Region {
name: String,
}

9
lib/src/track.rs Normal file
View File

@@ -0,0 +1,9 @@
enum TrackType {
Audio,
Midi,
}
struct Track {
name: String,
track_type: TrackType,
}