mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
13 lines
310 B
Rust
13 lines
310 B
Rust
use crate::*;
|
|
|
|
#[derive(Debug)]
|
|
pub struct ArrangerTrack {
|
|
/// Name of track
|
|
pub name: Arc<RwLock<String>>,
|
|
/// Preferred width of track column
|
|
pub width: usize,
|
|
/// Identifying color of track
|
|
pub color: ItemColor,
|
|
/// The MIDI player for the track
|
|
pub player: MIDIPlayer
|
|
}
|