1use crate::domain::Position;
23/// 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];