23 lines
514 B
C
23 lines
514 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 "start.h"
|
|
|
|
/**
|
|
* Init the poker match round.
|
|
* @param poker The poker game context.
|
|
* @param engine The engine context.
|
|
*/
|
|
void pokerMatchInit(poker_t *poker, engine_t *engine);
|
|
|
|
/**
|
|
* Update the poker match round.
|
|
* @param poker The poker match to update for.
|
|
*/
|
|
void pokerMatchUpdate(poker_t *poker, engine_t *engine); |