* @brief Identifies a high card by rank and holding hand. * * Used to track high cards in each suit during analysis. */
| 82 | * Used to track high cards in each suit during analysis. |
| 83 | */ |
| 84 | struct HighCardType |
| 85 | { |
| 86 | int rank; ///< Rank of the high card (2-14) |
| 87 | int hand; ///< Hand holding the card (0-3: N, E, S, W) |
| 88 | }; |
| 89 | |
| 90 | /** |
| 91 | * @brief Complete position state during game analysis. |
nothing calls this directly
no outgoing calls
no test coverage detected