Just thiknking about how to put it all together.
This commit is contained in:
15
src/game/poker/actions/action.c
Normal file
15
src/game/poker/actions/action.c
Normal file
@ -0,0 +1,15 @@
|
||||
/**
|
||||
* Copyright (c) 2021 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#include "action.h"
|
||||
|
||||
queueaction_t * pokerGameActionAdd(pokergame_t *game) {
|
||||
queueaction_t *action;
|
||||
action = queueAdd(&game->scene.conversation.actionQueue);
|
||||
action->data = (void *)game;
|
||||
return action;
|
||||
}
|
Reference in New Issue
Block a user