chore: Stubs for tally events

This commit is contained in:
Baud 2024-02-27 10:19:17 +00:00
parent e3a0d7973d
commit 34a268f0bf
2 changed files with 14 additions and 0 deletions

View File

@ -10,3 +10,4 @@ pub mod atem_lib;
pub mod commands; pub mod commands;
pub mod enums; pub mod enums;
pub mod state; pub mod state;
pub mod tally;

View File

@ -0,0 +1,13 @@
#[derive(Debug)]
pub struct TallyEvent {
tally_state: TallyState,
source_index: usize,
source_label: String,
source_name: String,
}
#[derive(Debug)]
enum TallyState {
Program,
Preview,
}