Moved code from card to poker
This commit is contained in:
23
src/poker/action/shuffle.h
Normal file
23
src/poker/action/shuffle.h
Normal file
@ -0,0 +1,23 @@
|
||||
/**
|
||||
* 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 "../../debug/log.h"
|
||||
|
||||
typedef struct {
|
||||
void (*done)();
|
||||
} shuffledata_t;
|
||||
|
||||
holdemaction_t actionShuffle();
|
||||
|
||||
void actionShuffleInit(int32_t index, void *data);
|
||||
|
||||
void actionShuffleUpdate(int32_t index, void *data);
|
||||
|
||||
void actionShuffleDispose(int32_t index, void *data);
|
Reference in New Issue
Block a user