1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// https://en.wikipedia.org/wiki/Racing_flags

#[derive(Clone, Debug, Default, PartialEq, serde::Serialize, serde::Deserialize)]
pub struct RacingFlags {
    pub green: bool,
    pub yellow: bool,
    pub blue: bool,
    pub white: bool,
    pub red: bool,
    pub black: bool,
    pub checkered: bool,
    pub meatball: bool,
    pub black_and_white: bool,
    pub start_ready: bool,
    pub start_set: bool,
    pub start_go: bool,
}