Added more comments.

This commit is contained in:
2021-08-29 12:57:42 -07:00
parent 64a2dd5773
commit f3e27dfd76
2 changed files with 37 additions and 0 deletions

View File

@ -8,4 +8,11 @@
#pragma once
#include <dawn/dawn.h>
/**
* Returns the AI result for a turn done by a non human player.
*
* @param poker Poker game instance to use.
* @param playerIndex Player index to get the turn for.
* @return Some information about the move the player is trying to perform.
*/
pokerturn_t pokerTurnGet(poker_t *poker, uint8_t playerIndex);