25 lines
608 B
C
25 lines
608 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include <dawn/dawn.h>
|
|
#include "action.h"
|
|
#include "../../../display/animation/queue.h"
|
|
#include "../pokerworld.h"
|
|
|
|
void _pokerGameActionLookOnStart(
|
|
queue_t *queue, queueaction_t *action, uint8_t i
|
|
);
|
|
|
|
/**
|
|
* Queues a look action to the poker game.
|
|
*
|
|
* @param game Game to add to.
|
|
* @param playerIndex The player index to look at.
|
|
* @return The queued action.
|
|
*/
|
|
queueaction_t * pokerGameActionLookAdd(pokergame_t *game, uint8_t playerIndex); |