25 lines
626 B
C
25 lines
626 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "../bet.h"
|
|
#include "../poker.h"
|
|
#include "../../libs.h"
|
|
#include "../../display/animation/queue.h"
|
|
|
|
/** Callback for the blinds action */
|
|
void _pokerActionBlindsOnStart(queue_t *queue,queueaction_t *action,uint8_t i);
|
|
|
|
/**
|
|
* Adds a blinds action onto the specified queue.
|
|
*
|
|
* @param queue Queue to add to.
|
|
* @param poker Poker game instance to deal.
|
|
* @return The queued action.
|
|
*/
|
|
queueaction_t * pokerActionBlindsAdd(queue_t *queue, poker_t *poker);
|