Init branch
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
6
lib/Cargo.toml
Normal file
6
lib/Cargo.toml
Normal file
@@ -0,0 +1,6 @@
|
||||
[package]
|
||||
name = "lib"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
2
lib/src/lib.rs
Normal file
2
lib/src/lib.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
mod track;
|
||||
mod region;
|
||||
3
lib/src/region.rs
Normal file
3
lib/src/region.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
struct Region {
|
||||
name: String,
|
||||
}
|
||||
9
lib/src/track.rs
Normal file
9
lib/src/track.rs
Normal file
@@ -0,0 +1,9 @@
|
||||
enum TrackType {
|
||||
Audio,
|
||||
Midi,
|
||||
}
|
||||
|
||||
struct Track {
|
||||
name: String,
|
||||
track_type: TrackType,
|
||||
}
|
||||
Reference in New Issue
Block a user