Skip to main content

server/domain/scoreboard/
positions.rs

1use crate::domain::Position;
2
3/// Represents the positions of both players in the game.
4///
5/// The array contains two `Position` elements:
6/// - Index `0` corresponds to `PLAYER0`
7/// - Index `1` corresponds to `PLAYER1`
8pub type Positions = [Position; 2];