WIP: Preparing the codebase, nothing important

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-22 20:31:38 +01:00
parent a9efa652ef
commit 20fe694a8f
10 changed files with 368 additions and 0 deletions

7
lib/src/project.rs Normal file
View File

@@ -0,0 +1,7 @@
use crate::{region::Region, track::Track};
pub(crate) struct Project {
name: String,
tracks: Vec<Track>,
regions: Vec<Region>,
}