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

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

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