xmrs 0.10.1

A library to edit SoundTracker data with pleasure
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::instr_sid::SidVoice;

#[derive(Debug)]
pub struct SoundFx {
    pub incdec_start_at_end: bool,
    pub incdec_counter: i8,
    pub note_start: u8,
    pub note_delta: u8,
    pub note_end: u8,
    pub flipflop_voice1_ctrl: bool,
    pub voice0_ctrl: bool,
    pub voice1_ctrl: bool,
    pub voice0: SidVoice,
    pub voice1: SidVoice,
}