1#[derive(Clone, Copy, Debug, Default)] 2pub struct DPadState { 3 pub up: bool, 4 pub down: bool, 5 pub left: bool, 6 pub right: bool, 7}