Moved code from card to poker

This commit is contained in:
2021-05-16 21:01:36 -07:00
parent 43155c4e36
commit fbd00b1bc2
36 changed files with 9 additions and 9 deletions

View 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);