#[derive(Clone, Copy, PartialEq, Eq, Hash, Debug)]/// The `SeatHandle` struct identifies the player seat associated with input.
pubstructSeatHandle(pub(super)u32);implSeatHandle{/// Returns the placeholder seat used until platform input seats are wired through.
pubfnstub()->Self{Self(0)}}