chore: Stubs for tally events
This commit is contained in:
parent
e3a0d7973d
commit
34a268f0bf
|
@ -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;
|
||||||
|
|
|
@ -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,
|
||||||
|
}
|
Loading…
Reference in New Issue