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;
fn main() {
/*
* Engine should run and wait for commands,
* but currently I need to implement the multitrack

View File

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

View File

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