WIP: Some formatting, nothing important

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-23 12:09:38 +01:00
parent 16e5951c1e
commit 2878fed643
4 changed files with 5 additions and 7 deletions

View File

@@ -1,7 +1,6 @@
use lib; use lib;
fn main() { fn main() {
/* /*
* Engine should run and wait for commands, * Engine should run and wait for commands,
* but currently I need to implement the multitrack * but currently I need to implement the multitrack

View File

@@ -1,5 +1,5 @@
mod metadata; mod metadata;
mod project; mod project;
mod track;
mod region; mod region;
mod track;

View File

@@ -1,7 +1,7 @@
use uuid::Uuid; use uuid::Uuid;
pub(crate) struct Metadata { pub(crate) struct Metadata {
id: Uuid, id: Uuid,
name: String, name: String,
} }

View File

@@ -2,15 +2,14 @@ use crate::metadata::Metadata;
use super::region::Region; use super::region::Region;
pub (crate) enum TrackType { pub(crate) enum TrackType {
Audio, Audio,
Midi, Midi,
} }
pub(crate) struct Track { pub(crate) struct Track {
metadata: Metadata, metadata: Metadata,
track_type: TrackType, track_type: TrackType,
} }
pub(crate) struct TrackStatus { pub(crate) struct TrackStatus {}
}