14 lines
319 B
C
14 lines
319 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "../../libs.h"
|
|
|
|
/** Representation of data that poker game actions can have access to. */
|
|
typedef struct {
|
|
uint8_t lookAtPlayer;
|
|
} pokergameactiondata_t; |