2021-10-12 09:25:42 -07:00

27 lines
614 B
C

/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "../../../libs.h"
#include "../pokerdiscussion.h"
#include "action.h"
#include "restack.h"
#include "winner.h"
#include "bet.h"
/** Callback that is fired when the flop action starts */
void _pokerGameActionFlopOnStart(
queue_t *queue, queueaction_t *action, uint8_t i
);
/**
* Queues a flop action on to the queue.
*
* @param game Game to queue on to.
* @return queueaction_t*
*/
queueaction_t * pokerGameActionFlopAdd(pokergame_t *game);