simetry/racing_flags.rs
1// https://en.wikipedia.org/wiki/Racing_flags
2
3#[derive(Clone, Debug, Default, PartialEq, serde::Serialize, serde::Deserialize)]
4pub struct RacingFlags {
5 pub green: bool,
6 pub yellow: bool,
7 pub blue: bool,
8 pub white: bool,
9 pub red: bool,
10 pub black: bool,
11 pub checkered: bool,
12 pub meatball: bool,
13 pub black_and_white: bool,
14 pub start_ready: bool,
15 pub start_set: bool,
16 pub start_go: bool,
17}